1
0
mirror of https://github.com/cahirwpz/amigaos-gcc-2.95.3.git synced 2025-12-08 14:58:59 +00:00

Fix runtime errors on 64-bit architectures (tested under MacOS Catalina).

* Ignoring implicit function declaration warnings resulted in pointers
   being clobbered to int type.
This commit is contained in:
Krystian Bacławski
2020-07-24 21:23:49 +02:00
parent eef13d1aba
commit 75a558d4cf
18 changed files with 58 additions and 3 deletions

View File

@ -1,6 +1,8 @@
/* Emulate vfork using just plain fork, for systems without a real vfork.
This function is in the public domain. */
int fork ();
int
vfork ()
{