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

13 lines
114 B
C
Raw Normal View History

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