Skip to content
Snippets Groups Projects
Commit 62b7c08b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent a85fa66c
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment