]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_err.c
When finding a bogus database entry,
[mandoc.git] / compat_err.c
index 5107c4607f0c647f3955494eabc1e8f3c55a85dd..d8b09cb2a30779b6f81c0be081b6ebac5a4c1cf0 100644 (file)
@@ -6,7 +6,7 @@ int dummy;
 
 #else
 
-/* $Id: compat_err.c,v 1.1 2015/10/11 21:12:54 schwarze Exp $ */
+/* $Id: compat_err.c,v 1.4 2015/11/26 07:42:11 schwarze Exp $ */
 /*
  * Copyright (c) 1993
  *      The Regents of the University of California.  All rights reserved.
@@ -36,22 +36,19 @@ int dummy;
  * SUCH DAMAGE.
  */
 
-#include <err.h>
 #include <errno.h>
 #include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
-extern char *__progname;
-
 static void vwarni(const char *, va_list);
 static void vwarnxi(const char *, va_list);
 
 static void
 vwarnxi(const char *fmt, va_list ap)
 {
-       fprintf(stderr, "%s: ", __progname);
+       fprintf(stderr, "%s: ", getprogname());
        if (fmt != NULL)
                vfprintf(stderr, fmt, ap);
 }
@@ -79,6 +76,18 @@ err(int eval, const char *fmt, ...)
        exit(eval);
 }
 
+void
+errx(int eval, const char *fmt, ...)
+{
+       va_list ap;
+
+       va_start(ap, fmt);
+       vwarnxi(fmt, ap);
+       va_end(ap);
+       fputc('\n', stderr);
+       exit(eval);
+}
+
 void
 warn(const char *fmt, ...)
 {