1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

misc: Fix compilation on Windows.

This commit is contained in:
Andreas Schneider
2011-05-26 11:19:25 +02:00
parent 8b73609e47
commit ba03388031

View File

@@ -32,7 +32,11 @@
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
#ifndef HAVE_CLOCK_GETTIME
#include <sys/time.h>
#endif /* HAVE_CLOCK_GETTIME */
#endif /* _WIN32 */
#include <limits.h>
#include <stdio.h>
@@ -42,9 +46,6 @@
#include <sys/types.h>
#include <ctype.h>
#include <time.h>
#ifndef HAVE_CLOCK_GETTIME
#include <sys/time.h>
#endif
#ifdef _WIN32