On 7/18/2012 4:59 AM, Jacob Carlborg wrote: > Does that mean that this C++ declaration: > > void foo (...); Not allowed in C or C++. > Is the same as this C declaration? > > void foo (); That is void foo(void) in C++.