summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_die8x.c
blob: bf49c5b1f42672cc52fea65ee73e263b9af08143 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* ISC license. */

/* MT-unsafe */

#include <skalibs/strerr.h>

void strerr_die8x (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 *v[8] = { x1, x2, x3, x4, x5, x6, x7, x8 } ;
  strerr_diev(e, v, 8) ;
}