summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_warnlsys.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrerr/strerr_warnlsys.c')
-rw-r--r--src/libstrerr/strerr_warnlsys.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_warnlsys.c b/src/libstrerr/strerr_warnlsys.c
new file mode 100644
index 0000000..fbd7a6b
--- /dev/null
+++ b/src/libstrerr/strerr_warnlsys.c
@@ -0,0 +1,22 @@
+/* ISC license. */
+
+/* MT-unsafe */
+
+#include <stdarg.h>
+#include <string.h>
+#include <errno.h>
+
+#include <skalibs/strerr.h>
+
+void strerr_warnlsys (unsigned int n, ...)
+{
+ va_list ap ;
+ char const *v[n+1] ;
+ 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) ;
+ v[n] = strerror(errno) ;
+ strerr_warnv(v, n+1) ;
+}