diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-09-15 18:07:02 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-09-15 18:07:02 +0200 |
commit | b1edef93d6a53a09e3b3a8806712286e2968f998 (patch) | |
tree | a65c1c80c5d7f93f433aadfe4c734e30212bbc26 | |
parent | 3e9cccc84db3c9d9229154793fce3b0b4e848285 (diff) |
Synchronise libffi_support.m with libffi_support.h.
darcs-hash:a1ad021fd52309be3d564acb41c58f0477b14ffc
-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. |