1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

include unistd.h as well for the close() proto on some platforms (like Tru64)

This commit is contained in:
Daniel Stenberg 2004-04-21 11:18:42 +00:00
parent a85fa66cc8
commit 62b7c08bb3

View File

@ -49,6 +49,9 @@
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */
#endif
#ifdef VMS
#include <in.h>
#include <inet.h>