aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-05-19 20:36:49 +0000
committerRob Landley <rob@landley.net>2006-05-19 20:36:49 +0000
commit80b8ff07ca4c39114875c7fd3230c4e9ae823f83 (patch)
tree0595f3f0671af4a40d5ee87c18bcf4dc4def3a41 /include
parentb1629b1b2abc17a6430e4173d64d7956784118e0 (diff)
downloadbusybox-w32-80b8ff07ca4c39114875c7fd3230c4e9ae823f83.tar.gz
busybox-w32-80b8ff07ca4c39114875c7fd3230c4e9ae823f83.tar.bz2
busybox-w32-80b8ff07ca4c39114875c7fd3230c4e9ae823f83.zip
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).
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 461c28fcb..ca3afea98 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -183,6 +183,7 @@ void run_applet_by_name(const char *name, int argc, char **argv);
183 * to have the prototypes here unconditionally. */ 183 * to have the prototypes here unconditionally. */
184extern void *xmalloc(size_t size); 184extern void *xmalloc(size_t size);
185extern void *xrealloc(void *old, size_t size); 185extern void *xrealloc(void *old, size_t size);
186extern void *xzalloc(size_t size);
186extern void *xcalloc(size_t nmemb, size_t size); 187extern void *xcalloc(size_t nmemb, size_t size);
187 188
188extern char *bb_xstrdup (const char *s); 189extern char *bb_xstrdup (const char *s);