merge from gcc

This commit is contained in:
DJ Delorie
2001-09-26 18:45:50 +00:00
parent 4e6667ac4f
commit 3942352316
53 changed files with 3241 additions and 350 deletions

View File

@@ -1,6 +1,16 @@
/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
/*
@deftypefn Supplemental int vfork ()
Emulates @code{vfork} by calling @code{fork} and returning its value.
@end deftypefn
*/
#include "ansidecl.h"
extern int fork PARAMS ((void));