shithub: scc

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

View raw version


#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}