X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fregex%2Fregerror.c;h=5b347cc73c7351b72ec40efa4901818751da7019;hb=f70375df85d26235a45e74559afd69be59e5ff99;hp=0645b8e72cb3cd8711885948846b888bdb10685a;hpb=b6dbdc69b6d969b416428e0eb467eefbe5a7837f;p=musl diff --git a/src/regex/regerror.c b/src/regex/regerror.c index 0645b8e7..5b347cc7 100644 --- a/src/regex/regerror.c +++ b/src/regex/regerror.c @@ -1,6 +1,7 @@ #include #include #include +#include "locale_impl.h" /* Error message strings for error codes listed in `regex.h'. This list needs to be in sync with the codes listed there, naturally. */ @@ -26,10 +27,11 @@ static const char messages[] = { "\0Unknown error" }; -size_t regerror(int e, const regex_t *preg, char *buf, size_t size) +size_t regerror(int e, const regex_t *restrict preg, char *restrict buf, size_t size) { const char *s; for (s=messages; e && *s; e--, s+=strlen(s)+1); if (!*s) s++; + s = LCTRANS_CUR(s); return 1+snprintf(buf, size, "%s", s); }