diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-11-02 10:12:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-02 10:12:22 +0000 |
commit | 24d47a6e07304cf0921f2d30734b3c64360773c3 (patch) | |
tree | 03bae425fc10d6c083e866a3e1ab5bf620dffe42 /lib/telnet.c | |
parent | 8a66584db4ab3bd1668a685785da7108f7550e95 (diff) | |
download | curl-24d47a6e07304cf0921f2d30734b3c64360773c3.tar.gz |
Paul Nolan fix to make libcurl build nicely on Windows CE
Diffstat (limited to 'lib/telnet.c')
-rw-r--r-- | lib/telnet.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/telnet.c b/lib/telnet.c index b0f74bb8d..c2813fa2a 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -30,9 +30,12 @@ #include <stdarg.h> #include <stdlib.h> #include <ctype.h> +#ifdef HAVE_SYS_TYPES_H #include <sys/types.h> +#endif +#ifdef HAVE_SYS_STAT_H #include <sys/stat.h> - +#endif #include <errno.h> #if defined(WIN32) |