shithub: scc

ref: a0a85448f88882e81a0adfc9bc67c761ccba2a95
dir: /tests/cc/execute/0073-ifndef.c/

View raw version
#ifndef DEF
int x = 0;
#endif

#define DEF

#ifndef DEF
X
#endif

int
main()
{
	return x;
}