shithub: scc

ref: c959ddb9017bc8288fc444d80840f1ae61aa6ca7
dir: /tests/cc/execute/0073-ifndef.c/

View raw version
#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}