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 --- enrealloc.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'enrealloc.c') diff --git a/enrealloc.c b/enrealloc.c index 04feede..92a50db 100644 --- a/enrealloc.c +++ b/enrealloc.c @@ -3,17 +3,12 @@ #ifndef TEST -extern char *argv0; - - void * libsimple_enrealloc(int status, void *ptr, size_t n) /* TODO test */ { char *ret = realloc(ptr, n); - if (!ret) { - fprintf(stderr, "%s: realloc: %s\n", argv0, strerror(errno)); - exit(status); - } + if (!ret) + enprintf(status, "realloc:"); return ret; } -- cgit v1.2.3-70-g09d2