From 34c0fd8f36269699b75e0aaf841911b5ae06246e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 28 Aug 2018 13:23:45 +0200 Subject: Simplify en* functions, and handle argv0 == NULL correct MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- enmalloc.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'enmalloc.c') diff --git a/enmalloc.c b/enmalloc.c index 0a13f03..f981872 100644 --- a/enmalloc.c +++ b/enmalloc.c @@ -3,17 +3,12 @@ #ifndef TEST -extern char *argv0; - - void * libsimple_enmalloc(int status, size_t n) /* TODO test */ { void *ret = malloc(n); - if (!ret) { - fprintf(stderr, "%s: malloc: %s\n", argv0, strerror(errno)); - exit(status); - } + if (!ret) + enprintf(status, "malloc:"); return ret; } -- cgit v1.2.3-70-g09d2