Date: Tue, 28 May 1996 09:43:29 +0200 (IST) From: Eli Zaretskii To: Fulco Bohle <100662 DOT 3563 AT CompuServe DOT COM> Cc: Delorie Subject: Re: ... In-Reply-To: <960527214658_100662.3563_EHV104-1@CompuServe.COM> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 27 May 1996, Fulco Bohle wrote: > I have a problem with variable number of arguments: > the code snippet below generates an error. > > int praecepta( a, ...) > int a; > { > ... > } ANSI C requires that functions with variable arguments be defined in the context where their prototype is visible. So I think this is not a bug.