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

/* MT-unsafe */

#include <skalibs/strerr.h>

void strerr_warn2x (char const *x1, char const *x2)
{
  char const *v[2] = { x1, x2 } ;
  strerr_warnv(v, 2) ;
}