1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-02 08:42:48 +00:00
freebsd/contrib/ntp/util/longsize.c
1999-12-09 13:01:21 +00:00

12 lines
150 B
C

#include <stdio.h>
main()
{
if (sizeof(long) == 8) {
printf("-DLONG8\n");
} else if (sizeof(long) == 4) {
printf("-DLONG4\n");
}
exit(0);
}