3d6d3ed091
version namespace which was needed before the library version was bumped.
17 lines
159 B
C
17 lines
159 B
C
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include "thr_private.h"
|
|
|
|
int _vfork(void);
|
|
|
|
__weak_reference(_vfork, vfork);
|
|
|
|
int
|
|
_vfork(void)
|
|
{
|
|
return (fork());
|
|
}
|