summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_warn7x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrerr/strerr_warn7x.c')
-rw-r--r--src/libstrerr/strerr_warn7x.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_warn7x.c b/src/libstrerr/strerr_warn7x.c
new file mode 100644
index 0000000..f963323
--- /dev/null
+++ b/src/libstrerr/strerr_warn7x.c
@@ -0,0 +1,11 @@
+/* ISC license. */
+
+/* MT-unsafe */
+
+#include <skalibs/strerr.h>
+
+void strerr_warnv2 (char const *x1, char const *x2)
+{
+ char const *v[2] = { x1, x2 } ;
+ strerr_warnv(v, 2) ;
+}