aboutsummaryrefslogtreecommitdiffstats
path: root/enmemdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'enmemdup.c')
-rw-r--r--enmemdup.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/enmemdup.c b/enmemdup.c
index 8693af6..9050efd 100644
--- a/enmemdup.c
+++ b/enmemdup.c
@@ -3,17 +3,12 @@
#ifndef TEST
-extern char *argv0;
-
-
void *
libsimple_enmemdup(int status, const void *s, size_t n) /* TODO test */
{
void *ret = memdup(s, n);
- if (!ret) {
- fprintf(stderr, "%s: memdup: %s\n", argv0, strerror(errno));
- exit(status);
- }
+ if (!ret)
+ enprintf(status, "memdup:");
return ret;
}