Fix syntax error bug with gcc32
authorStefan Vogel <sv@exept.de>
Tue, 15 Mar 2016 08:18:44 +0100
changeset 19365 83a120bf2212
parent 19364 4bf0b2b33b65
child 19366 82606b52b3a0
Fix syntax error bug with gcc32
ExternalLibraryFunction.st
--- a/ExternalLibraryFunction.st	Mon Mar 14 21:04:35 2016 +0100
+++ b/ExternalLibraryFunction.st	Tue Mar 15 08:18:44 2016 +0100
@@ -954,18 +954,10 @@
 	float fVal;
 	double dVal;
 	void *pointerVal;
-# if defined(HAS_LONGLONG)
+# if 0 && defined(HAS_LONGLONG)
 	long long longLongVal;
 # else
-#  ifdef HAS_INT64
 	__int64__ longLongVal;
-#  else
-	struct ll { long lo; long hi; } longLongVal;
-#   ifndef __LO32
-#    define __LO32(ll) (ll.lo)
-#    define __HI32(ll) (ll.hi)
-#   endif
-#  endif
 # endif
     };
     union u __argValuesIncludingThis[MAX_ARGS+1];