?
arguments for <functionname>,
?
required when you call a function through a pointer
with a bad number of arguments, checked only if you have
defined a RUNTIMECHECK cpp name. Example:
((void(*)()) error)(); /* 0 arguments for error, 1 required */
?
given) when you call a
built-in function with a variable number of arguments
with not enough arguments.
{ printf("the missing argument is : %s"); }