freebsd-skq/lib/libkse/thread/thr_vfork.c

17 lines
159 B
C
Raw Normal View History

/*
* $FreeBSD$
*/
2007-11-30 17:20:29 +00:00
#include <unistd.h>
#include "thr_private.h"
2007-11-30 17:20:29 +00:00
int _vfork(void);
__weak_reference(_vfork, vfork);
int
_vfork(void)
{
return (fork());
}