From 80b8ff07ca4c39114875c7fd3230c4e9ae823f83 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 19 May 2006 20:36:49 +0000 Subject: A pending item in my tree I might as well check in: I plan to migrate calloc() and bb_calloc() calls to bb_xzalloc() which allocates prezeroed memory but only takes one argument (the size). --- libbb/xfuncs.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libbb/xfuncs.c') diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index fa6aa0f9f..d3c9e41e1 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -37,6 +37,15 @@ void *xrealloc(void *ptr, size_t size) } #endif +#ifdef L_xzalloc +void *xzalloc(size_t size) +{ + void *ptr = xmalloc(size); + memset(ptr, 0, size); + return ptr; +} +#endif + #ifdef L_xcalloc void *xcalloc(size_t nmemb, size_t size) { -- cgit v1.2.3