aboutsummaryrefslogtreecommitdiff
path: root/src/tools/pg_bsd_indent/tests/f_decls.0
blob: aeef03b7046e0442ff8a3ea027901712d0feca49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
char * x(void)
{
    type identifier;
    type *pointer;
    unused * value;
    (void)unused * value;

    dmax = (double)3 * 10.0;
    dmin = (double)dmax * 10.0;
    davg = (double)dmax * dmin;

    return NULL;
}

int *
y(void) {

}

int
z(void) {

}

int x;
int *y;
int * * * * z;