freebsd-dev/lib/libc_r/uthread/uthread_vfork.c
Daniel Eischen 437df4859a To be consistent, use the __weak_reference macro from <sys/cdefs.h>
instead of #pragma weak to create weak definitions.

Suggested by:	bde
2001-04-10 04:19:21 +00:00

13 lines
114 B
C

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