msg_285.c revision 1.3
1/*	$NetBSD: msg_285.c,v 1.3 2021/06/15 08:48:49 rillig Exp $	*/
2# 3 "msg_285.c"
3
4// Test for message: prototype declaration [285]
5
6/* lint1-extra-flags: -r */
7
8void function(int, int, int);	/* expect: 285 */
9
10/* ARGSUSED */
11extern void
12function(a, b)
13    int a, b;
14{				/* expect: 3 declared, 2 defined */
15}
16