shithub: scc

ref: 47846316bb2f9c8dfdde56b31021f2e9cf12bcbb
dir: /tests/execute/0073-ifndef.c/

View raw version


#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}