msg_084.c revision 1.3
1/*	$NetBSD: msg_084.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
2# 3 "msg_084.c"
3
4// Test for message: ANSI C requires formal parameter before '...' [84]
5
6void only_ellipsis(...)		/* expect: 84 */
7{
8}
9
10void ok_ellipsis(const char *fmt, ...)	/* expect: 231 */
11{
12}
13