]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libkse/thread/thr_vfork.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libkse / thread / thr_vfork.c
1 /*
2  * $FreeBSD$
3  */
4
5 #include <unistd.h>
6 #include "thr_private.h"
7
8 int _vfork(void);
9
10 __weak_reference(_vfork, vfork);
11
12 int
13 _vfork(void)
14 {
15         return (fork());
16 }