mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04:00
10 lines
86 B
C
10 lines
86 B
C
|
|
#include <unistd.h>
|
||
|
|
#ifdef _THREAD_SAFE
|
||
|
|
|
||
|
|
int
|
||
|
|
vfork(void)
|
||
|
|
{
|
||
|
|
return (fork());
|
||
|
|
}
|
||
|
|
#endif
|