diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-10-15 00:55:37 -0500 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-10-15 00:57:57 -0500 |
commit | 3d91dc1bb5aeecda786ebe1805c33d14c8bd89fa (patch) | |
tree | 155498240a837b179319741542aaa78c8a47c9ab /lib/regex.c | |
parent | 6b8fd34c4ab1aa23b180440cdc8210900896bbf4 (diff) | |
download | emacs-3d91dc1bb5aeecda786ebe1805c33d14c8bd89fa.tar.gz emacs-3d91dc1bb5aeecda786ebe1805c33d14c8bd89fa.tar.bz2 emacs-3d91dc1bb5aeecda786ebe1805c33d14c8bd89fa.zip |
Update lib/regex from glibc via Gnulib
This syncs recent refactorings from glibc, and incorporates:
2018-10-15 libc-config: merge from glibc
2018-10-15 regex: depend on libc-config
* .gitignore: Do not ignore m4/_*.m4.
* lib/cdefs.h: New file, copied from Gnulib.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
* lib/libc-config.h, m4/__inline.m4: New files, copied from Gnulib.
* lib/regcomp.c, lib/regex.c, lib/regex_internal.c:
* lib/regex_internal.h, lib/regexec.c:
Copy from glibc via Gnulib.
Diffstat (limited to 'lib/regex.c')
-rw-r--r-- | lib/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index 499e1f0e035..2a86e107039 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -18,7 +18,7 @@ <https://www.gnu.org/licenses/>. */ #ifndef _LIBC -# include <config.h> +# include <libc-config.h> # if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ # pragma GCC diagnostic ignored "-Wsuggest-attribute=pure" |