diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-06-11 21:36:10 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-06-11 21:36:10 +0100 |
commit | 058b20052914ee2b0ccff4a89b71a61bf9d29a27 (patch) | |
tree | 90163f360caf169a9ccf18c92e9f2e64a19ecf2c /src/include/stdlib.h | |
parent | 0316eaf85d76355ff8935e8788c2712602d12a08 (diff) | |
download | ipxe-058b20052914ee2b0ccff4a89b71a61bf9d29a27.tar.gz |
Renamed _calloc() to zalloc(), ready to be used as a standalone function.
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r-- | src/include/stdlib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 6a0e9163..5c8fc3df 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 ); } /***************************************************************************** |