]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libc_r/uthread/uthread_vfork.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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 }