diff options
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -1,16 +0,0 @@ | |||
1 | /* See LICENSE file for copyright and license details. */ | ||
2 | #include "util.h" | ||
3 | #include <errno.h> | ||
4 | #include <stdarg.h> | ||
5 | #include <stdio.h> | ||
6 | #include <stdlib.h> | ||
7 | #include <string.h> | ||
8 | |||
9 | void * | ||
10 | emallocz(unsigned int size) { | ||
11 | void *res = calloc(1, size); | ||
12 | |||
13 | if(!res) | ||
14 | err(EXIT_FAILURE, "could not malloc() %u bytes\n", size); | ||
15 | return res; | ||
16 | } | ||