diff options
author | Yang Tse <yangsita@gmail.com> | 2011-07-25 05:30:14 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-07-25 05:30:14 +0200 |
commit | 983f3d70f9610a35f279b656a3322087e272f2a6 (patch) | |
tree | 55b7683e46c1c079e902f85208d0eb64b08e3903 /lib/tftp.c | |
parent | 0337b871975ab515c513d2c5d596feb9a489494d (diff) | |
download | curl-983f3d70f9610a35f279b656a3322087e272f2a6.tar.gz |
WIN32 io.h and fcntl.h inclusion done in setup_once.h
Diffstat (limited to 'lib/tftp.c')
-rw-r--r-- | lib/tftp.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/tftp.c b/lib/tftp.c index 5bb0bd5b3..73ce7aa08 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -29,17 +29,18 @@ #include <stdlib.h> #include <ctype.h> -#if defined(WIN32) -#include <io.h> -#else #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif +#ifdef HAVE_NETINET_IN_H #include <netinet/in.h> +#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif +#ifdef HAVE_NETDB_H #include <netdb.h> +#endif #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif @@ -54,8 +55,6 @@ #include <sys/param.h> #endif -#endif /* WIN32 */ - #include "urldata.h" #include <curl/curl.h> #include "transfer.h" |