diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/29k-share/udi/udip2soc.c | 7 | ||||
-rw-r--r-- | gdb/ChangeLog | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gdb/29k-share/udi/udip2soc.c b/gdb/29k-share/udi/udip2soc.c index 9232fd8..feb23b4 100644 --- a/gdb/29k-share/udi/udip2soc.c +++ b/gdb/29k-share/udi/udip2soc.c @@ -27,7 +27,12 @@ static char udip2soc_c_AMD[]="@(#)udip2soc.c 2.8, AMD"; #include <stdio.h> #include <string.h> #include <sys/file.h> -#include <sys/fcntl.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/wait.h> #include <sys/time.h> #include <sys/resource.h> diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 12bb27a..b552c5c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Thu Aug 5 08:58:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * 29k-share/udi/udip2soc.c: Include fcntl.h not sys/fcntl.h. + Wed Aug 4 18:32:12 1993 Fred Fish (fnf@cygnus.com) * inflow.c (pass_signal): Signal handlers take one int arg; |