Thread
:
how to change the entry point in gcc
View Single Post
asitmahato
Newbie Member
21Sep2011,08:27
How to change the entry point of gcc compiler ?
I mean the code will look like the bellow one.
Code:
#include<stdio.h> int entry() //this is the new entry point instead of main. { return 0; }
thank you very much..