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