Sign in
gnu
/
binutils-gdb
/
41e27f512a5123bc28e982264b9ceb3b78e6da85
/
.
/
libiberty
/
vfork.c
blob: 5e8772100815f107d1927ab11cb253c08e8aad71 [
file
] [
log
] [
blame
]
/* 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
()
{
return
(
fork
());
}