shithub: scc

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