mirror of
https://github.com/opnsense/src.git
synced 2026-03-31 23:15:10 -04:00
11 lines
164 B
C
11 lines
164 B
C
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
if (sizeof(long) == 8) {
|
|
printf("-DLONG8\n");
|
|
} else if (sizeof(long) == 4) {
|
|
printf("-DLONG4\n");
|
|
}
|
|
exit(0);
|
|
}
|