]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libpthread/thread/thr_vfork.c
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / lib / libpthread / thread / thr_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 }