On Fri, 2 Jun 2006, Carlos Y. Villalpando wrote:
> That's the syntax for varargs.  When the number of arguments can be
> variable, there's stack manipulation tools for pulling off the
> arguments one by one.

To be pedantic, that's the syntax for stdargs.  For varargs, the syntax
is different:

void somefunction()
va_dcl
{
	va_list ap;
	/* code */
}