shithub: scc

ref: e5c045851833cfd6b4a8a3326131caf5a406410b
dir: /tests/0073-ifndef.c/

View raw version


#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}