]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/xnu_quick_test/helpers/arch.c
xnu-1699.22.73.tar.gz
[apple/xnu.git] / tools / tests / xnu_quick_test / helpers / arch.c
1 #include <spawn.h>
2 #include <mach/machine.h>
3
4 /*
5 * Helper function for posix_spawn test: returns binary type as exit code.
6 */
7 int main()
8 {
9 #if __i386__
10 return CPU_TYPE_I386;
11 #endif /* __i386__ */
12 #if __x86_64__
13 return CPU_TYPE_X86_64;
14 #endif /* __x86_64__ */
15 /* unrecognized type */
16 return -1;
17 }