xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_053.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_053.c,v 1.6 2022/10/01 09:42:40 rillig Exp $	*/
2 # 3 "msg_053.c"
3 
4 // Test for message: declared argument '%s' is missing [53]
5 
6 /* expect+2: error: old-style declaration; add 'int' [1] */
7 oldstyle(argument)
8 	int argument;
9 	/* expect+1: error: declared argument 'extra_argument' is missing [53] */
10 	int extra_argument;
11 {
12 	return argument;
13 }
14