shithub: scc

ref: 30334d566f4bdb8cc53c0507c0dad248291b5f4e
dir: /tests/0073-ifndef.c/

View raw version


#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}