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_dielsys.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_dielsys.c')
-rw-r--r-- | src/libstrerr/strerr_dielsys.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/libstrerr/strerr_dielsys.c b/src/libstrerr/strerr_dielsys.c deleted file mode 100644 index 5c0e334..0000000 --- a/src/libstrerr/strerr_dielsys.c +++ /dev/null @@ -1,23 +0,0 @@ -/* ISC license. */ - -/* MT-unsafe */ - -#include <stdarg.h> -#include <string.h> -#include <unistd.h> -#include <errno.h> - -#include <skalibs/strerr.h> - -void strerr_dielsys (int e, unsigned int n, ...) -{ - va_list ap ; - char const *v[n+1] ; - va_start(ap, n) ; - va_arg(ap, unsigned int) ; - for (unsigned int i = 0 ; i < n ; i++) - v[i++] = va_arg(ap, char const *) ; - va_end(ap) ; - v[n] = strerror(errno) ; - strerr_diev(e, v, n+1) ; -} |