diff options
| author | Dmitrij Tejblum <dt@FreeBSD.org> | 1998-09-12 22:03:20 +0000 |
|---|---|---|
| committer | Dmitrij Tejblum <dt@FreeBSD.org> | 1998-09-12 22:03:20 +0000 |
| commit | deb9688ae12018dac6f669caf26ceceeebc5c992 (patch) | |
| tree | 4d2d532747d44e45aa8635fb4bf2a3f032d01c0a /lib/libpthread/thread/thr_vfork.c | |
| parent | 48f4157055d8b935933390a51a242ef3eeeb2ecb (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_vfork.c')
| -rw-r--r-- | lib/libpthread/thread/thr_vfork.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/libpthread/thread/thr_vfork.c b/lib/libpthread/thread/thr_vfork.c new file mode 100644 index 000000000000..bbfcf002bc02 --- /dev/null +++ b/lib/libpthread/thread/thr_vfork.c @@ -0,0 +1,9 @@ +#include <unistd.h> +#ifdef _THREAD_SAFE + +int +vfork(void) +{ + return (fork()); +} +#endif |
