shithub: scc

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