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_die10x.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_die10x.c')
-rw-r--r-- | src/libstrerr/strerr_die10x.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libstrerr/strerr_die10x.c b/src/libstrerr/strerr_die10x.c deleted file mode 100644 index 6999dfe..0000000 --- a/src/libstrerr/strerr_die10x.c +++ /dev/null @@ -1,11 +0,0 @@ -/* ISC license. */ - -/* MT-unsafe */ - -#include <skalibs/strerr.h> - -void strerr_die10x (int e, char const *x1, char const *x2, char const *x3, char const *x4, char const *x5, char const *x6, char const *x7, char const *x8, char const *x9, char const *x10) -{ - char const *v[10] = { x1, x2, x3, x4, x5, x6, x7, x8, x9, x10 } ; - strerr_diev(e, v, 10) ; -} |