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, 0 insertions, 22 deletions
diff --git a/src/libstrerr/strerr_warnlsys.c b/src/libstrerr/strerr_warnlsys.c
deleted file mode 100644
index fbd7a6b..0000000
--- a/src/libstrerr/strerr_warnlsys.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* 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) ;
-}