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