M mkristain macrumors regular Original poster Aug 18, 2011 115 0 Aug 22, 2011 #1 i am LINK_WITH_STANDARD_LIBRARIES but still this error comes. how to resolve this.
gnasher729 Suspended Nov 25, 2005 17,980 5,566 Aug 22, 2011 #2 mkristain said: i am LINK_WITH_STANDARD_LIBRARIES but still this error comes. how to resolve this. Click to expand... There is a Standard C library function "malloc", but none called "MALLOC". There are two possible ways to fix the problem: Either you called MALLOC when you wanted to call malloc. Change the call. Or you wanted to call MALLOC. Implement a function named MALLOC.
mkristain said: i am LINK_WITH_STANDARD_LIBRARIES but still this error comes. how to resolve this. Click to expand... There is a Standard C library function "malloc", but none called "MALLOC". There are two possible ways to fix the problem: Either you called MALLOC when you wanted to call malloc. Change the call. Or you wanted to call MALLOC. Implement a function named MALLOC.