From 058b20052914ee2b0ccff4a89b71a61bf9d29a27 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 11 Jun 2007 21:36:10 +0100 Subject: Renamed _calloc() to zalloc(), ready to be used as a standalone function. --- src/include/stdlib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 6a0e91633..5c8fc3df4 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -23,7 +23,7 @@ extern unsigned long strtoul ( const char *p, char **endp, int base ); extern void * malloc ( size_t size ); extern void * realloc ( void *old_ptr, size_t new_size ); extern void free ( void *ptr ); -extern void * _calloc ( size_t len ); +extern void * zalloc ( size_t len ); /** * Allocate cleared memory @@ -35,11 +35,11 @@ extern void * _calloc ( size_t len ); * Allocate memory as per malloc(), and zero it. * * This is implemented as a static inline, with the body of the - * function in _calloc(), since in most cases @c nmemb will be 1 and + * function in zalloc(), since in most cases @c nmemb will be 1 and * doing the multiply is just wasteful. */ static inline void * calloc ( size_t nmemb, size_t size ) { - return _calloc ( nmemb * size ); + return zalloc ( nmemb * size ); } /***************************************************************************** -- cgit v1.2.3-55-g7522