| Submitter | Mike Frysinger |
|---|---|
| Date | Oct. 1, 2010, 5:38 a.m. |
| Message ID | <1285911528-9268-1-git-send-email-vapier@gentoo.org> |
| Download | mbox | patch |
| Permalink | /patch/66304/ |
| State | Accepted, archived |
| Headers | show |
Comments
Patch
diff --git a/include/xalloc.h b/include/xalloc.h index d49a1ae..35a94af 100644 --- a/include/xalloc.h +++ b/include/xalloc.h @@ -56,6 +56,12 @@ static void *xcalloc(size_t nmemb, size_t size) } __attribute__((unused)) +static void *xzalloc(size_t size) +{ + return xcalloc(1, size); +} + +__attribute__((unused)) static void *xrealloc(void *ptr, size_t size) { ptr = realloc(ptr, size);
Signed-off-by: Mike Frysinger <vapier@gentoo.org> --- include/xalloc.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)