Fixed references to BuildCmdLine and my_system
[fw/sdcc] / support / Util / NewAlloc.c
index 920286eb028155de53f217e985e41f373a17d39c..05ca4fe38f20f9ac82ad8e21d7f266afe1d7e49b 100644 (file)
@@ -10,25 +10,23 @@ functions.
    under the terms of the GNU General Public License as published by the
    Free Software Foundation; either version 2, or (at your option) any
    later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-   
+
    In other words, you are welcome to use, share and improve this program.
    You are forbidden to forbid anyone else to use, share and improve
-   what you give them.   Help stamp out software-hoarding!  
+   what you give them.   Help stamp out software-hoarding!
 
 ===============================================================================
 */
 
-//#include "SDCCerr.h"
-
 #include <stdio.h>
 #include <malloc.h>
 #include <stdlib.h>
@@ -37,7 +35,7 @@ functions.
 #include "newalloc.h"
 /*
 -------------------------------------------------------------------------------
-Clear_realloc - Reallocate a memory block and clear any memory added with 
+Clear_realloc - Reallocate a memory block and clear any memory added with
 out of memory error detection
 
 -------------------------------------------------------------------------------
@@ -53,8 +51,8 @@ NewPtr = realloc(OldPtr,NewSize) ;
 if (!NewPtr)
   {
   printf("ERROR - No more memory\n") ;
-//  werror(E_OUT_OF_MEM,__FILE__,NewSize);
-  exit (1);                               
+/*  werror(E_OUT_OF_MEM,__FILE__,NewSize);*/
+  exit (1);
   }
 
 if (NewPtr)
@@ -80,8 +78,8 @@ NewPtr = realloc(OldPtr,NewSize) ;
 if (!NewPtr)
   {
   printf("ERROR - No more memory\n") ;
-//  werror(E_OUT_OF_MEM,__FILE__,NewSize);
-  exit (1);                               
+/*  werror(E_OUT_OF_MEM,__FILE__,NewSize);*/
+  exit (1);
   }
 
 return NewPtr ;
@@ -94,18 +92,18 @@ all data to zero and checking for out of memory errors.
 -------------------------------------------------------------------------------
 */
 
-void *Safe_calloc(size_t Size)
+void *Safe_calloc(size_t Elements,size_t Size)
 
 {
 void *NewPtr ;
 
-NewPtr = calloc(Size,1) ;
+NewPtr = calloc(Elements,Size) ;
 
 if (!NewPtr)
   {
   printf("ERROR - No more memory\n") ;
-//  werror(E_OUT_OF_MEM,__FILE__,Size);
-  exit (1);                               
+/*  werror(E_OUT_OF_MEM,__FILE__,Size);*/
+  exit (1);
   }
 
 return NewPtr ;
@@ -128,8 +126,8 @@ NewPtr = malloc(Size) ;
 if (!NewPtr)
   {
   printf("ERROR - No more memory\n") ;
-//  werror(E_OUT_OF_MEM,__FILE__,Size);
-  exit (1);                               
+/*  werror(E_OUT_OF_MEM,__FILE__,Size);*/
+  exit (1);
   }
 
 return NewPtr ;