summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_diel.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2022-11-29 02:24:47 +0000
committerLaurent Bercot <ska@appnovation.com>2022-11-29 02:24:47 +0000
commit06011c29aef19d8ed90ebf48095e1ff2a846ba23 (patch)
treea86aecdaec810635cbd4ae92b9b69f5ce9f55fa4 /src/libstrerr/strerr_diel.c
parent1f8f72ced6a4d7043e5b47d22960cde96fbb1a71 (diff)
downloadskalibs-06011c29aef19d8ed90ebf48095e1ff2a846ba23.tar.xz
Prepare for 2.13.0.0, revamp strerr
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstrerr/strerr_diel.c')
-rw-r--r--src/libstrerr/strerr_diel.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_diel.c b/src/libstrerr/strerr_diel.c
new file mode 100644
index 0000000..d142402
--- /dev/null
+++ b/src/libstrerr/strerr_diel.c
@@ -0,0 +1,24 @@
+/* ISC license. */
+
+/* MT-unsafe */
+
+#include <stdarg.h>
+#include <unistd.h>
+
+#include <skalibs/strerr.h>
+
+void strerr_diel (int e, unsigned int n, ...)
+{
+ if (n)
+ {
+ va_list ap ;
+ char const *v[n] ;
+ va_start(ap, n) ;
+ va_arg(ap, unsigned int) ;
+ for (unsigned int i = 0 ; i < n ; i++)
+ v[i++] = va_arg(ap, char const *) ;
+ va_end(ap) ;
+ strerr_warnv(v, n) ;
+ }
+ _exit(e) ;
+}