1 /* $NetBSD: msg_053.c,v 1.4 2022/04/24 20:08:23 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