shithub: scc

ref: 268eaf6cf283a9aa48a03d4a5c190ed6f7b39585
dir: /tests/0073-ifndef.c/

View raw version


#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}