Sign in
qemu
/
meson
/
bcbf0685492c61fbc9acac3e7b808a5036dd2439
/
.
/
test cases
/
common
/
31 define10
/
prog.c
blob: 519b40dcb4d3d2e1ae56154aa05b257c63e5c5a3 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
"config.h"
int
main
(
void
)
{
if
(
ONE
!=
1
)
{
fprintf
(
stderr
,
"ONE is not 1.\n"
);
return
1
;
}
if
(
ZERO
!=
0
)
{
fprintf
(
stderr
,
"ZERO is not 0.\n"
);
}
return
0
;
}