NetBSD/gnu/dist/libiberty/vfork.c

9 lines
157 B
C
Raw Normal View History

1997-09-24 19:39:15 +04:00
/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
int
vfork ()
{
return (fork ());
}