shithub: scc

ref: 33250e0f8b7583316d603c33a65b840afd0c7f45
dir: /tests/execute/0154-if-defined/

View raw version
#if defined(FOO)
int a;
#elif !defined(FOO) && defined(BAR)
int b;
#elif !defined(FOO) && !defined(BAR)
int c;
#else
int d;
#endif

int
main(void)
{
	return c;
}