diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-07-31 22:46:03 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-07-31 22:46:03 +0000 |
commit | 1a49497348d02ffd9ba0eab6881bb3353223a068 (patch) | |
tree | 128c13b69db4b27e1de00b36258d7d03281a4bbe /gdb/maint.c | |
parent | f641906be5812ffce356207b1248f9846c657a34 (diff) | |
download | gdb-1a49497348d02ffd9ba0eab6881bb3353223a068.zip gdb-1a49497348d02ffd9ba0eab6881bb3353223a068.tar.gz gdb-1a49497348d02ffd9ba0eab6881bb3353223a068.tar.bz2 |
* configure.in: Check for unistd.h.
* configure: Regenerated.
* command.c, cp-valprint.c, fork-child.c, i386-tdep.c,
i386b-nat.c, inflow.c, main.c, maint.c, objfiles.c, solib.c,
source.c, stack.c, symfile.c, top.c, utils.c: Include strings.h
and/or unistd.h to bring prototypes into scope.
Diffstat (limited to 'gdb/maint.c')
-rw-r--r-- | gdb/maint.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/maint.c b/gdb/maint.c index 7f822ec..c824317 100644 --- a/gdb/maint.c +++ b/gdb/maint.c @@ -33,6 +33,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "expression.h" /* For language.h */ #include "language.h" +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + static void maintenance_command PARAMS ((char *, int)); static void maintenance_dump_me PARAMS ((char *, int)); |