Rework HRTF decision logic
[openal-soft.git] / cmake / CheckFileOffsetBits.c
blobde98296eab25e3c51c69c258ac74b40c019c5ed7
1 #include <sys/types.h>
3 #define KB ((off_t)(1024))
4 #define MB ((off_t)(KB*1024))
5 #define GB ((off_t)(MB*1024))
6 int tb[((GB+GB+GB) > GB) ? 1 : -1];
8 int main()
9 { return 0; }