binutils-gdb/libiberty/vfork.c

13 lines
214 B
C
Raw Normal View History

1999-05-03 15:29:11 +08:00
/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
2000-10-12 10:16:48 +08:00
#include "ansidecl.h"
extern int fork PARAMS ((void));
1999-05-03 15:29:11 +08:00
int
vfork ()
{
return (fork ());
}