xref: /netbsd-src/external/bsd/ntp/dist/util/longsize.c (revision cdfa2a7ef92791ba9db70a584a1d904730e6fb46)
1 /*	$NetBSD: longsize.c,v 1.5 2020/05/25 20:47:37 christos Exp $	*/
2 
3 #include <stdio.h>
4 
main()5 main()
6 {
7 	if (sizeof(long) == 8) {
8 		printf("-DLONG8\n");
9 	} else if (sizeof(long) == 4) {
10 		printf("-DLONG4\n");
11 	}
12 	exit(0);
13 }
14