fix declaration in testcase helper header
authorLisandro Dalcin <dalcinl@gmail.com>
Wed, 9 Feb 2011 14:58:33 +0000 (11:58 -0300)
committerLisandro Dalcin <dalcinl@gmail.com>
Wed, 9 Feb 2011 14:58:33 +0000 (11:58 -0300)
tests/compile/nogil.h

index 2c66be05d72c91f65a476dc0eb145b1b8c937aee..f2e1c100c9f9872f8bd97b5820b3958a2497e3df 100644 (file)
@@ -2,13 +2,13 @@
 extern "C" {
 #endif
 extern DL_EXPORT(void) e1(void);
-extern DL_EXPORT(void *) e2(void);
+extern DL_EXPORT(int*) e2(void);
 #ifdef __cplusplus
 }
 #endif
 
 void e1(void) {return;}
-void *e2(void) {return 0;}
+int* e2(void) {return 0;}