summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_die9x.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_die9x.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_die9x.c')
-rw-r--r--src/libstrerr/strerr_die9x.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_die9x.c b/src/libstrerr/strerr_die9x.c
new file mode 100644
index 0000000..669723e
--- /dev/null
+++ b/src/libstrerr/strerr_die9x.c
@@ -0,0 +1,11 @@
+/* ISC license. */
+
+/* MT-unsafe */
+
+#include <skalibs/strerr.h>
+
+void strerr_die9x (int e, char const *x1, char const *x2, char const *x3, char const *x4, char const *x5, char const *x6, char const *x7, char const *x8, char const *x9)
+{
+ char const *v[9] = { x1, x2, x3, x4, x5, x6, x7, x8, x9 } ;
+ strerr_diev(e, v, 9) ;
+}