repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
dist
/
ntp
/
util
/
longsize.c
blob
0d83e49ef31b9e1c2d9c606014e0890ab97f93a2
1
/* $NetBSD$ */
2
3
#include <stdio.h>
4
5
main
()
6
{
7
if
(
sizeof
(
long
) ==
8
) {
8
printf
(
"-DLONG8
\n
"
);
9
}
else if
(
sizeof
(
long
) ==
4
) {
10
printf
(
"-DLONG4
\n
"
);
11
}
12
exit
(
0
);
13
}