diff options
Diffstat (limited to 'src/libstrerr/strerr_die3x.c')
-rw-r--r-- | src/libstrerr/strerr_die3x.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_die3x.c b/src/libstrerr/strerr_die3x.c new file mode 100644 index 0000000..25f5612 --- /dev/null +++ b/src/libstrerr/strerr_die3x.c @@ -0,0 +1,11 @@ +/* ISC license. */ + +/* MT-unsafe */ + +#include <skalibs/strerr.h> + +void strerr_die3x (int e, char const *x1, char const *x2, char const *x3) +{ + char const *v[3] = { x1, x2, x3 } ; + strerr_diev(e, v, 3) ; +} |