You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
316 B

int main()
{
int a;
#ifndef SOMEDEF
int b;
#endif /* SOMEDEF */
if (a)
{
}
#ifndef SOMEDEF
else if (b)
{
}
#endif /* SOMEDEF */
/* same thing w/o preprocs for reference */
if (a)
{
}
else if (b)
{
}
#ifdef FOO
do
{
Foo();
}
#endif
while (Loop--);
}