summaryrefslogtreecommitdiff
path: root/libffi/include/ffitarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'libffi/include/ffitarget.h')
-rw-r--r--libffi/include/ffitarget.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/libffi/include/ffitarget.h b/libffi/include/ffitarget.h
deleted file mode 100644
index 61d8c29..0000000
--- a/libffi/include/ffitarget.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Dispatch to the right ffitarget file. This file is PyObjC specific, in a
- * normal build the build environment copies the file to the right location or
- * sets up the right include flags. We want to do neither because that would
- * make building fat binaries harder.
- */
-#if defined(__i386__)
-
-#include "../src/x86/ffitarget.h"
-
-#elif defined(__ppc__)
-
-#include "../src/powerpc/ffitarget.h"
-
-#else
-
-#errror "Unsupported CPU type"
-
-#endif