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

/* MT-unsafe */

#include <skalibs/strerr.h>

void strerr_die3x (int e, char const *x1, char const *x2, char const *x3)
{
  char const *v[3] = { x1, x2, x3 } ;
  strerr_diev(e, v, 3) ;
}