Initial import from FreeBSD RELENG_4:
[dragonfly.git] / lib / libc_r / uthread / uthread_vfork.c
1 /*
2  * $FreeBSD: src/lib/libc_r/uthread/uthread_vfork.c,v 1.1.8.1 2002/10/22 14:44:03 fjoe Exp $
3  */
4 #include <unistd.h>
5
6 int
7 vfork(void)
8 {
9         return (fork());
10 }