shithub: scc

ref: 08abc12db33fbddd1896580e4a08064558e88c0e
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;
}