diff options
author | DJ Delorie <dj@delorie.com> | 2001-09-26 18:45:50 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2001-09-26 18:45:50 +0000 |
commit | bd7ce1bbb2ea47e045e6dd755cf16f05a2555309 (patch) | |
tree | 9fcc8e3e643152ed109636c5420b217c9d116002 /libiberty/vfork.c | |
parent | 3d6b05970e5c5b951cf734883641e64090a3c370 (diff) | |
download | gdb-bd7ce1bbb2ea47e045e6dd755cf16f05a2555309.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty/vfork.c')
-rw-r--r-- | libiberty/vfork.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libiberty/vfork.c b/libiberty/vfork.c index 5e877210081..7df7a226260 100644 --- a/libiberty/vfork.c +++ b/libiberty/vfork.c @@ -1,6 +1,16 @@ /* Emulate vfork using just plain fork, for systems without a real vfork. This function is in the public domain. */ +/* + +@deftypefn Supplemental int vfork () + +Emulates @code{vfork} by calling @code{fork} and returning its value. + +@end deftypefn + +*/ + #include "ansidecl.h" extern int fork PARAMS ((void)); |