aboutsummaryrefslogblamecommitdiff
path: root/usr.bin/indent/tests/f_decls.0
blob: a463d3c46a5dd0cc326dda8e9f37f1b67ce117c6 (plain) (tree)




























                               
/* $FreeBSD$ */

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;