1
0
mirror of https://github.com/cahirwpz/amigaos-gcc-2.95.3.git synced 2025-12-08 14:58:59 +00:00
Files
amigaos-gcc-2.95.3/libiberty/vfork.c
Krystian Bacławski 75a558d4cf Fix runtime errors on 64-bit architectures (tested under MacOS Catalina).
* Ignoring implicit function declaration warnings resulted in pointers
   being clobbered to int type.
2020-07-24 21:23:49 +02:00

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 ());
}