Sign in
qemu
/
meson
/
410bdf8c6c72fd1a2772e86a2a14298f64f1377b
/
.
/
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
;
}