1/*	$NetBSD: msg_063.c,v 1.4 2023/07/07 19:45:22 rillig Exp $	*/
2# 3 "msg_063.c"
3
4// Test for message: prototype does not match old-style definition [63]
5
6/* lint1-extra-flags: -X 351 */
7
8int
9function(a, b)
10	int a, b;
11{
12	return a + b;
13}
14
15/* expect+1: error: prototype does not match old-style definition [63] */
16double function(int);
17