/contrib/ntp/util/longsize.c
C | 11 lines | 10 code | 1 blank | 0 comment | 5 complexity | c095abed4084a8f01dbc2a871f00f53e MD5 | raw file
1#include <stdio.h> 2 3main() 4{ 5 if (sizeof(long) == 8) { 6 printf("-DLONG8\n"); 7 } else if (sizeof(long) == 4) { 8 printf("-DLONG4\n"); 9 } 10 exit(0); 11}