mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
385576a748
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
346 B
C
23 lines
346 B
C
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
|
This function is in the public domain. */
|
|
|
|
/*
|
|
|
|
@deftypefn Supplemental int vfork (void)
|
|
|
|
Emulates @code{vfork} by calling @code{fork} and returning its value.
|
|
|
|
@end deftypefn
|
|
|
|
*/
|
|
|
|
#include "ansidecl.h"
|
|
|
|
extern int fork (void);
|
|
|
|
int
|
|
vfork (void)
|
|
{
|
|
return (fork ());
|
|
}
|