ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
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 ());
|
|
}
|