From: drdani Date: Mon, 31 Jan 2000 08:24:06 +0000 (+0000) Subject: Fix some comments X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=dac58057deb9119f7b888ba84449466720c268b5;p=fw%2Fsdcc Fix some comments drdani git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@46 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/device/lib/malloc.c b/device/lib/malloc.c index 214c7b92..e9a67e11 100644 --- a/device/lib/malloc.c +++ b/device/lib/malloc.c @@ -44,13 +44,13 @@ // { // ... // init_dynamic_memory(dynamic_memory_pool,DYNAMIC_MEMORY_SIZE); - // //Now it's possible to use malloc. + // Now it is possible to use malloc. // ... // current_buffer = malloc(0x100); // // - if ( !array ) //Reserved memory starts on 0x0000 but it's NULL... + if ( !array ) /*Reserved memory starts on 0x0000 but it's NULL...*/ { //So, we lost one byte! array = (MEMHEADER _xdata * )((char _xdata * ) array + 1) ; size --;