mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 13:39:25 -04:00
14 lines
218 B
C
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);
|
|
}
|