msg_299.c revision 1.3
11.3Srillig/*	$NetBSD: msg_299.c,v 1.3 2022/06/16 21:24:41 rillig Exp $	*/
21.1Srillig# 3 "msg_299.c"
31.1Srillig
41.3Srillig/* Test for message: prototype does not match old style definition, arg #%d [299] */
51.1Srillig
61.3Srillig/* lint1-flags: -w */
71.3Srillig
81.3Srilligold_style(x)
91.3Srillig	double x;
101.3Srillig{
111.3Srillig	return x > 0.0;
121.3Srillig}
131.3Srillig
141.3Srillig/* expect+1: error: prototype does not match old style definition, arg #1 [299] */
151.3Srilligvoid old_style(char ch);
16