diff options
author | Nikola Pajkovsky <npajkovs@redhat.com> | 2010-09-29 07:36:36 +0200 |
---|---|---|
committer | Nikola Pajkovsky <npajkovs@redhat.com> | 2010-10-04 15:11:50 +0200 |
commit | 36d755a2c09c630cad442a6424381683070b2cc0 (patch) | |
tree | 5f515cd3e73db6ffddb1b835d0882d711f801f27 /inc | |
parent | 1ae327bd0df1eb621fc6a9b4d8b81f10bf7f019d (diff) | |
download | abrt-36d755a2c09c630cad442a6424381683070b2cc0.tar.gz abrt-36d755a2c09c630cad442a6424381683070b2cc0.tar.xz abrt-36d755a2c09c630cad442a6424381683070b2cc0.zip |
xfunc.c: add new funtion xcalloc
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
Diffstat (limited to 'inc')
-rw-r--r-- | inc/xfuncs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/xfuncs.h b/inc/xfuncs.h index 0be1f801..20284564 100644 --- a/inc/xfuncs.h +++ b/inc/xfuncs.h @@ -33,6 +33,7 @@ int ndelay_on(int fd); int ndelay_off(int fd); int close_on_exec_on(int fd); +void* xcalloc(size_t nmemb, size_t size); void* xmalloc(size_t size); void* xrealloc(void *ptr, size_t size); void* xzalloc(size_t size); |