summaryrefslogtreecommitdiffstats
path: root/test cases/common/31 define10/prog.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test cases/common/31 define10/prog.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/common/31 define10/prog.c b/test cases/common/31 define10/prog.c
new file mode 100644
index 0000000..519b40d
--- /dev/null
+++ b/test cases/common/31 define10/prog.c
@@ -0,0 +1,13 @@
+#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;
+}