xref: /freebsd/contrib/ntp/sntp/libevent/cmake/CheckFileOffsetBits.c (revision a466cc55373fc3cf86837f09da729535b57e69a1)
1*a466cc55SCy Schubert #include <sys/types.h>
2*a466cc55SCy Schubert 
3*a466cc55SCy Schubert #define KB ((off_t)1024)
4*a466cc55SCy Schubert #define MB ((off_t)1024 * KB)
5*a466cc55SCy Schubert #define GB ((off_t)1024 * MB)
6*a466cc55SCy Schubert #define TB ((off_t)1024 * GB)
7*a466cc55SCy Schubert int t2[(((64 * GB -1) % 671088649) == 268434537)
8*a466cc55SCy Schubert        && (((TB - (64 * GB -1) + 255) % 1792151290) == 305159546)? 1: -1];
9*a466cc55SCy Schubert 
main()10*a466cc55SCy Schubert int main()
11*a466cc55SCy Schubert {
12*a466cc55SCy Schubert   ;
13*a466cc55SCy Schubert   return 0;
14*a466cc55SCy Schubert }
15