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.
|
int do_this
|
|
(
|
|
int x,
|
|
int y
|
|
)
|
|
{
|
|
|
|
x++;
|
|
#ifdef ABC
|
|
#ifdef DEF
|
|
x += y;
|
|
#endif
|
|
#endif
|
|
a++;
|
|
#ifdef ABC
|
|
b++;
|
|
#ifdef DEF
|
|
c++;
|
|
#ifdef HIJ
|
|
d++;
|
|
#endif
|
|
e++;
|
|
#endif
|
|
f++;
|
|
#endif
|
|
g++;
|
|
|
|
return (x)
|
|
}
|