diff options
author | Jeff Law <law@redhat.com> | 2000-07-26 23:30:27 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2000-07-26 23:30:27 +0000 |
commit | 4d5c5c98177690df576dbf75dc9ffb029f632c7c (patch) | |
tree | de9474b6070b836856de7bdce99fbf8f3925c150 /libiberty | |
parent | 967192c9d1d79493d6218abb92f1d9d82e68d014 (diff) | |
download | gdb-4d5c5c98177690df576dbf75dc9ffb029f632c7c.tar.gz |
* getcwd.c: Include string.h, stdlib.h for prototypes
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 2 | ||||
-rw-r--r-- | libiberty/getcwd.c | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 5ac849099b1..9acd322846c 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,6 +1,8 @@ 2000-07-27 RodneyBrown <RodneyBrown@pmsc.com> Jeff Law <law@cygnus.com> + * getcwd.c: Include string.h, stdlib.h for prototypes + * Makefile.in (rename.o, waitpid.o): Depend on config.h * rename.c: include config.h, unistd.h * waitpid.c: include config.h, sys/wait.h diff --git a/libiberty/getcwd.c b/libiberty/getcwd.c index 47b1c1eec31..344556392b3 100644 --- a/libiberty/getcwd.c +++ b/libiberty/getcwd.c @@ -29,6 +29,12 @@ BUGS #include <sys/param.h> #endif #include <errno.h> +#ifdef HAVE_STRING_H +#include <string.h> +#endif +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#endif extern char *getwd (); extern int errno; |