d5e6f1b80b
(in this case, throw away all local modifications; I'll start patching from scratch)
14 lines
218 B
C
14 lines
218 B
C
/* $NetBSD: longsize.c,v 1.2 2003/12/04 16:23:38 drochner Exp $ */
|
|
|
|
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
if (sizeof(long) == 8) {
|
|
printf("-DLONG8\n");
|
|
} else if (sizeof(long) == 4) {
|
|
printf("-DLONG4\n");
|
|
}
|
|
exit(0);
|
|
}
|