xref: /trueos/lib/libkse/thread/thr_vfork.c (revision 8cf2d070a8052f74c73cb0b3d2b09bc755e9ce6e)
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
_vfork(void)13 _vfork(void)
14 {
15 	return (fork());
16 }
17