diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-11-30 08:57:30 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-11-30 08:57:30 +0000 |
commit | a520e25b9c4f928441b292e27225851ce077ab58 (patch) | |
tree | 5a3d4b6027f324cf3dac6af7668b3077de25cb64 /src/libstrerr/strerr_die2x.c | |
parent | f3d0308736af6993d7f0b177895b90e46390579a (diff) | |
download | skalibs-a520e25b9c4f928441b292e27225851ce077ab58.tar.xz |
Much better strerr revamp, with __VA_ARGS__
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstrerr/strerr_die2x.c')
-rw-r--r-- | src/libstrerr/strerr_die2x.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libstrerr/strerr_die2x.c b/src/libstrerr/strerr_die2x.c deleted file mode 100644 index 8113818..0000000 --- a/src/libstrerr/strerr_die2x.c +++ /dev/null @@ -1,11 +0,0 @@ -/* ISC license. */ - -/* MT-unsafe */ - -#include <skalibs/strerr.h> - -void strerr_die2x (int e, char const *x1, char const *x2) -{ - char const *v[2] = { x1, x2 } ; - strerr_diev(e, v, 2) ; -} |