1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

src/utils.c: Don't include termios.h on Windows

This commit is contained in:
Eli Zaretskii 2014-12-21 19:10:26 +01:00 committed by Tim Ruehsen
parent 9ee2fdd50d
commit fc336758ab

View File

@ -64,8 +64,10 @@ as that of the covered work. */
#include <sys/stat.h>
/* For TIOCGWINSZ and friends: */
#include <sys/ioctl.h>
#include <termios.h>
#ifndef WINDOWS
# include <sys/ioctl.h>
# include <termios.h>
#endif
/* Needed for Unix version of run_with_timeout. */
#include <signal.h>