xref: /freebsd/contrib/ntp/util/longsize.c (revision 87569f75a91f298c52a71823c04d41cf53c88889)
1 #include <stdio.h>
2 
3 main()
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 }
12