aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/util.c b/util.c
deleted file mode 100644
index 2e33fbd..0000000
--- a/util.c
+++ /dev/null
@@ -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
9void *
10emallocz(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}