]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libkse/thread/thr_vfork.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / libkse / thread / thr_vfork.c
1 /*
2  * $FreeBSD$
3  */
4 #include <unistd.h>
5
6 #include "thr_private.h"
7
8 LT10_COMPAT_PRIVATE(_vfork);
9 LT10_COMPAT_DEFAULT(vfork);
10
11 __weak_reference(_vfork, vfork);
12
13 int
14 _vfork(void)
15 {
16         return (fork());
17 }