aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/preproc_func.c
blob: f1f38feb93e04b8cfd9f666f1889b3d0ec9becdd (plain) (blame)
1
2
3
4
5
6
7
8
9
#define FOO(x) do { \
        x = x + 1;  \
        x = x / 2;  \
    } while (x > 0);

void foo(int x)
{
    FOO(x);
}