freebsd-dev/contrib/ntp/util/longsize.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
150 B
C
Raw Normal View History

1999-12-09 13:01:21 +00:00
#include <stdio.h>
main()
{
if (sizeof(long) == 8) {
printf("-DLONG8\n");
} else if (sizeof(long) == 4) {
printf("-DLONG4\n");
}
exit(0);
}