Don't include netinet/tcp.h in ser-tcp.c if __CYGWIN32__ defined

This commit is contained in:
Geoffrey Noer 1996-09-06 20:17:26 +00:00
parent 421fafa29e
commit 94a42c6394
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Sep 6 13:14:13 1996 Geoffrey Noer <noer@cygnus.com>
* ser-tcp.c: don't include netinet/tcp.h if __CYGWIN32__
Thu Sep 5 17:05:13 1996 Geoffrey Noer <noer@cygnus.com>
* config/i386/cygwin32.mh:

View File

@ -25,7 +25,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/socket.h>
#ifndef __CYGWIN32__
#include <netinet/tcp.h>
#endif
#include "signals.h"
#include "gdb_string.h"