The problem is something like:
I have a function named ADD_TWO(int,int);
, now in the program, I want to create its alias keeping the previous function untouched. Something like ADD_TWO_NUMBERS(int,int);
. i.e if I call ADD_TWO_NUMBERS
it should execute ADD_TWO
.
I want to have an Alias for the function.