diff options
Diffstat (limited to 'Objective-C')
-rw-r--r-- | Objective-C/libffi_support.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Objective-C/libffi_support.m b/Objective-C/libffi_support.m index f292ee5..4bc1137 100644 --- a/Objective-C/libffi_support.m +++ b/Objective-C/libffi_support.m @@ -359,14 +359,14 @@ signature_to_ffi_type(const char* argtype) #ifdef __ppc__ ffi_type* -arg_signature_to_ffi_type(const char* argtype) +objcl_pyobjc_arg_signature_to_ffi_type(const char* argtype) { return signature_to_ffi_type (argtype); } #else ffi_type* -arg_signature_to_ffi_type(const char* argtype) +objcl_pyobjc_arg_signature_to_ffi_type(const char* argtype) { /* NOTE: This is the minimal change to pass the unittests, it is not * based on analysis of the calling conventions. @@ -384,7 +384,7 @@ arg_signature_to_ffi_type(const char* argtype) #else /* GNUstep */ ffi_type* -arg_signature_to_ffi_type(const char* argtype) +objcl_pyobjc_arg_signature_to_ffi_type(const char* argtype) { /* NOTE: This is the minimal change to pass the unittests, it is not * based on analysis of the calling conventions. |