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
Родитель a85fa66cc8
Коммит 62b7c08bb3
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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>