freebsd-dev/lib/libkse/thread/thr_vfork.c
Daniel Eischen 3d6d3ed091 Remove hacks to allow libkse to export its symbols in the LIBTHREAD_1_0
version namespace which was needed before the library version was
bumped.
2007-12-16 23:29:57 +00:00

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());
}