Fix for cygwin

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4330 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-06-02 04:11:19 +00:00
parent 9f4fbbee9f
commit 91c136b68c
4 changed files with 17 additions and 9 deletions

View file

@ -52,7 +52,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#ifndef __WIN32__
#if !defined(__WIN32__) || defined(__CYGWIN__)
#include <unistd.h> /* for gethostname() */
#include <sys/param.h> /* for MAXHOSTNAMELEN */
#include <netinet/in.h> /* for inet_ntoa() */
@ -80,7 +80,7 @@
#endif /* !__WIN32__ */
#include <string.h> /* for memset() and strchr() */
#ifndef __WIN32__
#if !defined(__WIN32__) || defined(__CYGWIN__)
#include <time.h>
#include <sys/time.h>
#include <sys/resource.h>