shithub: scc

ref: 11845819cdd4384de7c96ccc63d97b9e35d6610c
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;
}