why name mangling isn't breaking my program?

454 Views Asked by At

Possible Duplicate:
Is main() overloaded in C++?

here's my code:

#include <iostream>

int main(void* a, void* b)
{
    std::cout << "hello standalone " << std::endl;                      
    return 0;
}

different parameters should have a different symbol name after name mangling(void* a, void* b) should be different from (int, char**), but this program doesn't have any problem when running.

Why is that?

2

There are 2 best solutions below

4
On

It depends on the compiler. The standard required signatures for main are:

int main()
int main(int argc, char** argv)
int main(int argc, char* argv[])

But besides these, the compiler is free to provide other signatures as well.

For example, gcc 4.3.4 rejects your code - http://ideone.com/XZp2h

MSVS complains about unresolved externals.

6
On

Because main is a special case, and the compiler generates special code for it. Typically, main will be called from a startup routine—often called crt0 in older compilers—written in C, so the compiler will generate main as if it were declared extern "C". But that's in no way required; it's a just a typical implementation.