diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-11-29 02:24:47 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-11-29 02:24:47 +0000 |
commit | 06011c29aef19d8ed90ebf48095e1ff2a846ba23 (patch) | |
tree | a86aecdaec810635cbd4ae92b9b69f5ce9f55fa4 /src/libstrerr/strerr_die3x.c | |
parent | 1f8f72ced6a4d7043e5b47d22960cde96fbb1a71 (diff) | |
download | skalibs-06011c29aef19d8ed90ebf48095e1ff2a846ba23.tar.xz |
Prepare for 2.13.0.0, revamp strerr
Signed-off-by: Laurent Bercot <ska@appnovation.com>
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) ; +} |