437df4859a
instead of #pragma weak to create weak definitions. Suggested by: bde
13 lines
114 B
C
13 lines
114 B
C
/*
|
|
* $FreeBSD$
|
|
*/
|
|
#include <unistd.h>
|
|
|
|
__weak_reference(_vfork, vfork);
|
|
|
|
int
|
|
_vfork(void)
|
|
{
|
|
return (fork());
|
|
}
|