diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2006-06-08 13:10:52 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2006-06-08 13:10:52 +0000 |
commit | 8911861820133a176d34353d257262dd1e764b1d (patch) | |
tree | 4f7e9c4875f6299d738033dee893ab739d16c3dc /contrib/binutils/libiberty/vfork.c | |
parent | 2ce641c5c4a4abcf1b9d570b63ec974620adb2d3 (diff) |
Diffstat (limited to 'contrib/binutils/libiberty/vfork.c')
-rw-r--r-- | contrib/binutils/libiberty/vfork.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/contrib/binutils/libiberty/vfork.c b/contrib/binutils/libiberty/vfork.c deleted file mode 100644 index 4aa5c21d4271..000000000000 --- a/contrib/binutils/libiberty/vfork.c +++ /dev/null @@ -1,22 +0,0 @@ -/* Emulate vfork using just plain fork, for systems without a real vfork. - This function is in the public domain. */ - -/* - -@deftypefn Supplemental int vfork (void) - -Emulates @code{vfork} by calling @code{fork} and returning its value. - -@end deftypefn - -*/ - -#include "ansidecl.h" - -extern int fork PARAMS ((void)); - -int -vfork () -{ - return (fork ()); -} |