]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc_r/uthread/uthread_vfork.c
add -n option to suppress clearing the build tree and add -DNO_CLEAN
[FreeBSD/FreeBSD.git] / lib / libc_r / uthread / uthread_vfork.c
1 /*
2  * $FreeBSD$
3  */
4 #include <unistd.h>
5
6 __weak_reference(_vfork, vfork);
7
8 int
9 _vfork(void)
10 {
11         return (fork());
12 }