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

/* MT-unsafe */

#include <skalibs/strerr.h>

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