Tag: 切入点

如何用gcc改变C程序的入口点?

如何更改用gcc编译的C程序的入口点? 就像在下面的代码中一样 #include int entry() //entry is the entry point instead of main { return 0; }