Re: [rev 2542] Compile problem on Linux
Reply #1 –
You have to include stdlib in koord.h:
diff --git dataobj/koord.h dataobj/koord.h
index 6efc7b4..9928bf6 100644
--- dataobj/koord.h
+++ dataobj/koord.h
@@ -3,6 +3,7 @@
#include "ribi.h"
#include "../simtypes.h"
+#include <stdlib.h>
cl**** loadsave_t;
(If you compile with the debug flag, stdlib will be included via simtypes and thus this bug wasn't spotted, yet).