blob: 519b40dcb4d3d2e1ae56154aa05b257c63e5c5a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}
|