shithub: scc

ref: e09f22444ca7a476716bda56849ff539fb05b1c2
dir: /tests/cc/execute/0154-if-defined.c/

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;
}