





























1













1





















1







int xyz( void ) {
void abc( void );
}







(void)


xyz(void, void) …

xyz(void) isn't possible, it has to be xyz(), and this matches well to the call site.
in C it can be xyz(void), but not xyz(void, void)
auto xyz(void) is possible in cpp(void, void) because this doesn't change signature of function



















































