1 /* here's a function where the parameters have no declarators */ 2 int nodecl( 3 int, /* first param (nodecl) */ 4 char *, /* second param (nodecl) */ 5 long /* third param (nodecl) */ 6 ); 7 8 /* here's another function where the parameters have no declarators */ 9 int nodecl2( 10 int, 11 char, /* second param (nodecl2) */ 12 long /* third param (nodecl2) */ 13 ); 14