* 29k-share/udi/udip2soc.c: Include sys/types.h before sys/file.h.

This commit is contained in:
Jim Kingdon 1993-08-05 19:06:24 +00:00
parent b66b07a292
commit 038de4933e
2 changed files with 6 additions and 1 deletions

View File

@ -26,6 +26,10 @@ static char udip2soc_c_AMD[]="@(#)udip2soc.c 2.8, AMD";
*/
#include <stdio.h>
#include <string.h>
/* Before sys/file.h for Unixware. */
#include <sys/types.h>
#include <sys/file.h>
/* This used to say sys/fcntl.h, but the only systems I know of that
@ -36,7 +40,6 @@ static char udip2soc_c_AMD[]="@(#)udip2soc.c 2.8, AMD";
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>

View File

@ -1,5 +1,7 @@
Thu Aug 5 08:58:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* 29k-share/udi/udip2soc.c: Include sys/types.h before sys/file.h.
* config/i386/tm-i386bsd.h (NUM_REGS): There are only 10, not 11.
* inflow.c: Put all uses of F_GETFL and F_SETFL in #ifdef F_GETFL.