shithub: scc

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