Hello,
I have written two functions NewMalloc() and NewFree() which are similar to malloc() and free(). They have a global variable of 50000 byte array and its where the memory is allocated dynamically. Everything is written in C , (not C++)
my problem is that i have givent this array, the name(identifier) "NEWMALLOC_mem" which will not allow me to use this word as an identifier in my programs that use these two functions.
(for now, the two functions, macros and the global variable are written in a file called newmalloc.c which is to be linked with my programs).
in C++ this can be solved by using Namespace... but i want this on C..
please help me...
Thanks..



LinkBack URL
About LinkBacks




so now i will look at it...