hi,
Can i use #undef for undefining a function definition and use my
function instead?
like described below
#undef somefunction1
#define somefunction1(a ,b) myfunction1(a,b )
If yes what effect will it have on the undefined function code? can i
use the same for standard C library function?
Sachin
Can i use #undef for undefining a function definition and use my
function instead?
like described below
#undef somefunction1
#define somefunction1(a ,b) myfunction1(a,b )
If yes what effect will it have on the undefined function code? can i
use the same for standard C library function?
Sachin
Comment