mirror of
https://github.com/cahirwpz/amigaos-gcc-2.95.3.git
synced 2025-12-08 14:58:59 +00:00
* Ignoring implicit function declaration warnings resulted in pointers being clobbered to int type.
11 lines
171 B
C
11 lines
171 B
C
/* Emulate vfork using just plain fork, for systems without a real vfork.
|
|
This function is in the public domain. */
|
|
|
|
int fork ();
|
|
|
|
int
|
|
vfork ()
|
|
{
|
|
return (fork ());
|
|
}
|