// Test for message: prototype does not match old-style definition [63]
/* lint1-extra-flags: -X 351 */
int
/* expect+1: warning: function definition for 'function' with identifier list is obsolete in C23 [384] */
function(a, b)
int a, b;
{
return a + b;
}
/* expect+1: error: prototype does not match old-style definition [63] */
double function(int);