diff options
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)); |