xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_084.c (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1 /*	$NetBSD: msg_084.c,v 1.5 2023/07/07 19:45:22 rillig Exp $	*/
2 # 3 "msg_084.c"
3 
4 /* Test for message: ANSI C requires formal parameter before '...' [84] */
5 
6 /* lint1-flags: -sw -X 351 */
7 
8 /* expect+2: error: ANSI C requires formal parameter before '...' [84] */
9 void
10 only_ellipsis(...)
11 {
12 }
13 
14 char
15 ok_ellipsis(const char *fmt, ...)
16 {
17 	return fmt[0];
18 }
19