/contrib/ntp/util/longsize.c
https://bitbucket.org/freebsd/freebsd-head/ · C · 11 lines · 10 code · 1 blank · 0 comment · 5 complexity · c095abed4084a8f01dbc2a871f00f53e MD5 · raw file
- #include <stdio.h>
- main()
- {
- if (sizeof(long) == 8) {
- printf("-DLONG8\n");
- } else if (sizeof(long) == 4) {
- printf("-DLONG4\n");
- }
- exit(0);
- }