freebsd-dev/lib/libpthread/thread/thr_vfork.c

13 lines
107 B
C
Raw Normal View History

/*
* $FreeBSD$
*/
#include <unistd.h>
#pragma weak vfork=_vfork
int
_vfork(void)
{
return (fork());
}