* 29k-share/udi/udr.c: Include fcntl.h not sys/fcntl.h. Also put
sys/types.h near the top (just on general principles).
This commit is contained in:
parent
36d701ab49
commit
a2fbd4c8e9
2 changed files with 9 additions and 1 deletions
|
@ -27,8 +27,13 @@ static char udr_c_AMD[]="@(#)udr.c 2.3, AMD";
|
|||
********************************************************************** HISTORY
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
/* This used to say sys/fcntl.h, but the only systems I know of that
|
||||
require that are old (pre-4.3, at least) BSD systems, which we
|
||||
probably don't need to worry about. */
|
||||
#include <fcntl.h>
|
||||
|
||||
#include <sys/socket.h>
|
||||
#include "udiproc.h"
|
||||
#include "udisoc.h"
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
Mon Aug 9 09:53:45 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* 29k-share/udi/udr.c: Include fcntl.h not sys/fcntl.h. Also put
|
||||
sys/types.h near the top (just on general principles).
|
||||
|
||||
* environ.c (set_in_environ): Remove G960BASE and G960BIN; they are
|
||||
no longer used.
|
||||
|
||||
|
|
Loading…
Reference in a new issue