summaryrefslogtreecommitdiff
path: root/Objective-C/libffi_support.h
diff options
context:
space:
mode:
Diffstat (limited to 'Objective-C/libffi_support.h')
-rw-r--r--Objective-C/libffi_support.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/Objective-C/libffi_support.h b/Objective-C/libffi_support.h
deleted file mode 100644
index ca04c6b..0000000
--- a/Objective-C/libffi_support.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef PyObjC_FFI_SUPPORT_H
-#define PyObjC_FFI_SUPPORT_H
-
-#ifdef USE_LIBFFI
-#ifdef HAVE_FFI_H
-#include <ffi.h>
-#elif HAVE_FFI_FFI_H
-#include <ffi/ffi.h>
-#else
-/* We are using our own build of libffi. */
-#include <ffi.h>
-#endif
-#endif
-
-ffi_type*
-objcl_pyobjc_signature_to_ffi_return_type (const char* argtype);
-
-ffi_type*
-objcl_pyobjc_arg_signature_to_ffi_type (const char* argtype);
-
-#endif /* PyObjC_FFI_SUPPORT_H */