shithub: scc

ref: 82383606b685c930d22ad3c3458195ff7d180454
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;
}