summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/util/longsize.c
blob: 6bdbdfeff5f18b1c2e16621985d107ccd442b6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

main()
{
    if (sizeof(long) == 8) { 
        printf("-DLONG8\n");
    } else if (sizeof(long) == 4) {
	printf("-DLONG4\n");
    }
  exit(0);
}
OpenPOWER on IntegriCloud