diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-27 11:45:21 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-27 11:45:47 -0800 |
commit | ee7514b91beb254a7dc62f618046d34036555cea (patch) | |
tree | 7299efc4b14731bb30d013bb9594b2e7834b1d8d /lib/regexec.c | |
parent | a8576aba8fa45549985566bc8be4921dce508dd9 (diff) | |
download | emacs-ee7514b91beb254a7dc62f618046d34036555cea.tar.gz emacs-ee7514b91beb254a7dc62f618046d34036555cea.tar.bz2 emacs-ee7514b91beb254a7dc62f618046d34036555cea.zip |
Update from Gnulib
* build-aux/config.guess, lib/regcomp.c, lib/regex.c:
* lib/regex_internal.h, lib/regexec.c: Copy from Gnulib.
Diffstat (limited to 'lib/regexec.c')
-rw-r--r-- | lib/regexec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/regexec.c b/lib/regexec.c index c7d099c38e4..5f682695c44 100644 --- a/lib/regexec.c +++ b/lib/regexec.c @@ -189,7 +189,7 @@ static reg_errcode_t extend_buffers (re_match_context_t *mctx, int min_len); We return 0 if we find a match and REG_NOMATCH if not. */ int -regexec (const regex_t *_Restrict_ preg, const char *_Restrict_ string, +regexec (const regex_t *__restrict preg, const char *__restrict string, size_t nmatch, regmatch_t pmatch[], int eflags) { reg_errcode_t err; @@ -232,8 +232,8 @@ __typeof__ (__regexec) __compat_regexec; int attribute_compat_text_section -__compat_regexec (const regex_t *_Restrict_ preg, - const char *_Restrict_ string, size_t nmatch, +__compat_regexec (const regex_t *__restrict preg, + const char *__restrict string, size_t nmatch, regmatch_t pmatch[], int eflags) { return regexec (preg, string, nmatch, pmatch, |