]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libc_r/uthread/uthread_vfork.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 }