diff options
author | bde <bde@FreeBSD.org> | 1994-11-14 05:16:46 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-11-14 05:16:46 +0000 |
commit | 91436a2279660a8d3be3ca6ba8e793d65d9ffde1 (patch) | |
tree | d02d2b2e58e4cc6b010a8edb38290c02cb034bb3 | |
parent | e226c8811174b2c3938ba17546831fbca43dddd8 (diff) | |
download | FreeBSD-src-91436a2279660a8d3be3ca6ba8e793d65d9ffde1.zip FreeBSD-src-91436a2279660a8d3be3ca6ba8e793d65d9ffde1.tar.gz |
Include <sys/types.h> early. This will be required when <stdio.h> and/or
<signal.h> are fixed to not include it.
Bruce
-rw-r--r-- | gnu/usr.bin/gdb/gdb/terminal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/gdb/gdb/terminal.h b/gnu/usr.bin/gdb/gdb/terminal.h index f76fa90..de52a16 100644 --- a/gnu/usr.bin/gdb/gdb/terminal.h +++ b/gnu/usr.bin/gdb/gdb/terminal.h @@ -20,6 +20,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #if !defined (TERMINAL_H) #define TERMINAL_H 1 +#include <sys/types.h> + #if !defined(__GO32__) && !defined (HAVE_TERMIOS) /* Define a common set of macros -- BSD based -- and redefine whatever |