Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic Repairs: Repairs
In Antwort auf:My guess is that you're trying to call C++ functions from C and the C object file is expecting to see myfunc() and the C++ object file is providing gnu_int_int_myfunc() or some such nonsense.
#include <stdlib.h>#include <stdio.h>#include <fcntl.h>#include <sys/ioctl.h>int main (){if (0 != fork ()){return 0;}return 0;}