diff options
author | Jeff Law <law@redhat.com> | 2000-07-26 23:24:05 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2000-07-26 23:24:05 +0000 |
commit | 90aaccd1f26c3ac0dc5963d6db4b0f0fcfc2c1d6 (patch) | |
tree | 4e41b27e25af96469706357c8ef601ab339f8b52 /libiberty/waitpid.c | |
parent | fe9f384f163d7fc5c2126b32e59ed01066979a2d (diff) | |
download | gdb-90aaccd1f26c3ac0dc5963d6db4b0f0fcfc2c1d6.zip gdb-90aaccd1f26c3ac0dc5963d6db4b0f0fcfc2c1d6.tar.gz gdb-90aaccd1f26c3ac0dc5963d6db4b0f0fcfc2c1d6.tar.bz2 |
* 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
Diffstat (limited to 'libiberty/waitpid.c')
-rw-r--r-- | libiberty/waitpid.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/waitpid.c b/libiberty/waitpid.c index 23db0b9..2848309 100644 --- a/libiberty/waitpid.c +++ b/libiberty/waitpid.c @@ -1,3 +1,10 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif +#ifdef HAVE_SYS_WAIT_H +#include <sys/wait.h> +#endif + int waitpid (pid, stat_loc, options) int pid, *stat_loc, options; |