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

/* MT-unsafe */

#include <skalibs/strerr.h>

void strerr_die2x (int e, char const *x1, char const *x2)
{
  char const *v[2] = { x1, x2 } ;
  strerr_diev(e, v, 2) ;
}