]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - lib/libc_r/uthread/uthread_vfork.c
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.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 }