2015-10-15 10:25:28 +02:00

14 lines
218 B
C

/* $NetBSD: longsize.c,v 1.3 2015/07/10 14:20:36 christos Exp $ */
#include <stdio.h>
main()
{
if (sizeof(long) == 8) {
printf("-DLONG8\n");
} else if (sizeof(long) == 4) {
printf("-DLONG4\n");
}
exit(0);
}