1/* $FreeBSD$ */ 2 3char * 4x(void) 5{ 6 type identifier; 7 type *pointer; 8 unused *value; 9 (void)unused * value; 10 11 dmax = (double)3 * 10.0; 12 dmin = (double)dmax * 10.0; 13 davg = (double)dmax * dmin; 14 15 return NULL; 16} 17 18int * 19y(void) 20{ 21 22} 23 24int 25z(void) 26{ 27 28} 29 30int x; 31int *y; 32int ****z; 33