Home | History | Annotate | Line # | Download | only in cmake
      1  1.1  christos /*	$NetBSD: CheckFileOffsetBits.c,v 1.1.1.1 2021/04/07 02:43:15 christos Exp $	*/
      2  1.1  christos #include <sys/types.h>
      3  1.1  christos 
      4  1.1  christos #define KB ((off_t)1024)
      5  1.1  christos #define MB ((off_t)1024 * KB)
      6  1.1  christos #define GB ((off_t)1024 * MB)
      7  1.1  christos #define TB ((off_t)1024 * GB)
      8  1.1  christos int t2[(((64 * GB -1) % 671088649) == 268434537)
      9  1.1  christos        && (((TB - (64 * GB -1) + 255) % 1792151290) == 305159546)? 1: -1];
     10  1.1  christos 
     11  1.1  christos int main()
     12  1.1  christos {
     13  1.1  christos   ;
     14  1.1  christos   return 0;
     15  1.1  christos }
     16