]> git.saurik.com Git - apple/dyld.git/blob - testing/test-cases/dlopen-haswell.dtest/a.c
dyld-750.6.tar.gz
[apple/dyld.git] / testing / test-cases / dlopen-haswell.dtest / a.c
1 #include <stdbool.h>
2
3 bool isHaswell()
4 {
5 #if __x86_64h__
6 return true;
7 #else
8 return false;
9 #endif
10 }