summaryrefslogtreecommitdiff
path: root/src/libstrerr/strerr_dievsys.c
blob: 10437f99c5e8288246dbcc6f22dda355675d17f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* ISC license. */

/* MT-unsafe */

#include <unistd.h>

#include <skalibs/strerr.h>

void strerr_dievsys (int e, char const *const *v, unsigned int n)
{
  strerr_warnvsys(v, n) ;
  _exit(e) ;
}