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.
30 lines
336 B
30 lines
336 B
4 years ago
|
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)
|
||
|
}
|