/*
* $FreeBSD$
*/
#include <unistd.h>
__weak_reference(_vfork, vfork);
int
_vfork(void)
{
return (fork());
}