blob: da008ce7948a2c8ee74f12e5169de32e82a72837 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
extern char *argv0;
char *
enstrdup(int status, const char *s)
{
char *ret = strdup(s);
if (!ret) {
fprintf(stderr, "%s: strdup: %s\n", argv0, strerror(errno));
exit(status);
}
return ret;
}
|