freebsd_amp_hwpstate/lib/libc_r/uthread/uthread_vfork.c

10 lines
86 B
C

#include <unistd.h>
#ifdef _THREAD_SAFE
int
vfork(void)
{
return (fork());
}
#endif