'function' : declared with 'void' parameter list
The function declaration has no formal parameters, but the function call has actual parameters. Extra parameters are passed according to the calling convention of the function.
Example
int f1( void ); f1( 10 );