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

/* MT-unsafe */

#include <skalibs/strerr.h>

void strerr_warn3sys (char const *x1, char const *x2, char const *x3)
{
  char const *v[3] = { x1, x2, x3 } ;
  strerr_warnvsys(v, 3) ;
}