Fix some comments
authordrdani <drdani@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 31 Jan 2000 08:24:06 +0000 (08:24 +0000)
committerdrdani <drdani@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 31 Jan 2000 08:24:06 +0000 (08:24 +0000)
drdani

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@46 4a8a32a2-be11-0410-ad9d-d568d2c75423

device/lib/malloc.c

index 214c7b92ea05e4a2d728f6f53060247c7dbbfeb9..e9a67e11f97a15e67b1f65057ae145ee85a425cb 100644 (file)
             //     {
             //         ...
             //         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 --;