fix ffi test

db4
Doug Coleman 2008-04-23 17:07:37 -05:00
parent e5d9d00635
commit ca1484b94c
3 changed files with 5 additions and 5 deletions

View File

@ -364,9 +364,9 @@ FUNCTION: ulonglong ffi_test_38 ( ulonglong x, ulonglong y ) ;
+ + 1+
] alien-callback ;
FUNCTION: void int_ffi_test_36_point_5 ( ) ;
FUNCTION: void ffi_test_36_point_5 ( ) ;
[ ] [ int_ffi_test_36_point_5 ] unit-test
[ ] [ ffi_test_36_point_5 ] unit-test
FUNCTION: int ffi_test_37 ( void* func ) ;

View File

@ -253,9 +253,9 @@ double ffi_test_36(struct test_struct_12 x)
static int global_var;
void int_ffi_test_36_point_5(void)
void ffi_test_36_point_5(void)
{
printf("int_ffi_test_36_point_5\n");
printf("ffi_test_36_point_5\n");
global_var = 0;
}

View File

@ -62,7 +62,7 @@ struct test_struct_12 { int a; double x; };
DLLEXPORT double ffi_test_36(struct test_struct_12 x);
DLLEXPORT void int_ffi_test_36_point_5(void);
DLLEXPORT void ffi_test_36_point_5(void);
DLLEXPORT int ffi_test_37(int (*f)(int, int, int));