]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/ntp/util/longsize.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / ntp / util / longsize.c
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 }