1/*
2 * Dispatch to the right ffitarget file. This file is PyObjC specific, in a
3 * normal build the build environment copies the file to the right location or
4 * sets up the right include flags. We want to do neither because that would
5 * make building fat binaries harder.
6 */
7#if defined(__i386__)
8
9#include "../src/x86/ffitarget.h"
10
11#elif defined(__ppc__)
12
13#include "../src/powerpc/ffitarget.h"
14
15#else
16
17#errror "Unsupported CPU type"
18
19#endif
20