diff options
author | DJ Delorie <dj@redhat.com> | 2000-10-12 02:16:48 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2000-10-12 02:16:48 +0000 |
commit | 74bcd5294fa6894905a705d18c229cbe5ea42b59 (patch) | |
tree | 91ed0f591c548ee0da25c619bee2598d160e028f /libiberty/vfork.c | |
parent | 3ef20aaa54691fee72c081389787d2787dbf6164 (diff) | |
download | gdb-74bcd5294fa6894905a705d18c229cbe5ea42b59.zip gdb-74bcd5294fa6894905a705d18c229cbe5ea42b59.tar.gz gdb-74bcd5294fa6894905a705d18c229cbe5ea42b59.tar.bz2 |
merge from gcc repository
Diffstat (limited to 'libiberty/vfork.c')
-rw-r--r-- | libiberty/vfork.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libiberty/vfork.c b/libiberty/vfork.c index 86c4591..5e87721 100644 --- a/libiberty/vfork.c +++ b/libiberty/vfork.c @@ -1,6 +1,10 @@ /* Emulate vfork using just plain fork, for systems without a real vfork. This function is in the public domain. */ +#include "ansidecl.h" + +extern int fork PARAMS ((void)); + int vfork () { |