From c65006bb8cfe4b2ad20d78ebc6b7b76d937581de Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Wed, 9 Feb 2011 11:58:33 -0300 Subject: [PATCH] fix declaration in testcase helper header --- tests/compile/nogil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/compile/nogil.h b/tests/compile/nogil.h index 2c66be05..f2e1c100 100644 --- a/tests/compile/nogil.h +++ b/tests/compile/nogil.h @@ -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;} -- 2.26.2