Fix some comments
[fw/sdcc] / 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 --;