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_warn9sys.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_warn9sys.c')
-rw-r--r-- | src/libstrerr/strerr_warn9sys.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_warn9sys.c b/src/libstrerr/strerr_warn9sys.c new file mode 100644 index 0000000..a5920eb --- /dev/null +++ b/src/libstrerr/strerr_warn9sys.c @@ -0,0 +1,11 @@ +/* ISC license. */ + +/* MT-unsafe */ + +#include <skalibs/strerr.h> + +void strerr_warn9sys (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 *v[9] = { x1, x2, x3, x4, x5, x6, x7, x8, x9 } ; + strerr_warnvsys(v, 9) ; +} |