mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
12 lines
165 B
C
12 lines
165 B
C
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
if (sizeof(long) == 8) {
|
|
printf("-DLONG8\n");
|
|
} else if (sizeof(long) == 4) {
|
|
printf("-DLONG4\n");
|
|
}
|
|
exit(0);
|
|
}
|