blob: 10f8586536a97d486504ae842fd467d85e73e8dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $OpenBSD: uthread_vfork.c,v 1.3 2007/11/20 19:35:37 deraadt Exp $ */
#include <unistd.h>
#ifdef _THREAD_SAFE
pid_t _dofork(int vfork);
pid_t
vfork(void)
{
return (_dofork(1));
}
#endif
|