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