summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_warnv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrerr/strerr_warnv.c')
-rw-r--r--src/libstrerr/strerr_warnv.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/libstrerr/strerr_warnv.c b/src/libstrerr/strerr_warnv.c
deleted file mode 100644
index f59cfe9..0000000
--- a/src/libstrerr/strerr_warnv.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* ISC license. */
-
-/* MT-unsafe */
-
-#include <errno.h>
-
-#include <skalibs/buffer.h>
-#include <skalibs/strerr.h>
-
-void strerr_warnv (char const *const *v, unsigned int n)
-{
- int e = errno ;
- for (unsigned int i = 0 ; i < n ; i++)
- if (v[i]) buffer_puts(buffer_2, v[i]) ;
- buffer_putflush(buffer_2, "\n", 1) ;
- errno = e ;
-}