]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_err.c
A missing initialization could randomly cause regular expression
[mandoc.git] / compat_err.c
index 3a5bac036580b97d17f933fcc71f69f0af85a1d1..d8b09cb2a30779b6f81c0be081b6ebac5a4c1cf0 100644 (file)
@@ -6,7 +6,7 @@ int dummy;
 
 #else
 
-/* $Id: compat_err.c,v 1.2 2015/11/06 16:30:33 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,7 +36,6 @@ int dummy;
  * SUCH DAMAGE.
  */
 
-#include <err.h>
 #include <errno.h>
 #include <stdarg.h>
 #include <stdio.h>
@@ -77,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, ...)
 {