diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-20 19:41:21 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-20 19:41:21 +0200 |
commit | 5a41f696c4b8251583f5516084eaba3b752cb7f6 (patch) | |
tree | 22b5ec28c59fa7cefe4044778c3a943a53f3e5c2 | |
parent | 21a94b55d96dc3e78a2f2eae11511038639e30ee (diff) | |
download | egawk-5a41f696c4b8251583f5516084eaba3b752cb7f6.tar.gz egawk-5a41f696c4b8251583f5516084eaba3b752cb7f6.tar.bz2 egawk-5a41f696c4b8251583f5516084eaba3b752cb7f6.zip |
Sync regex to GLIBC.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | regex.c | 2 | ||||
-rw-r--r-- | regex.h | 4 | ||||
-rw-r--r-- | regex_internal.c | 2 | ||||
-rw-r--r-- | regex_internal.h | 2 |
5 files changed, 10 insertions, 5 deletions
@@ -1,3 +1,8 @@ +2014-02-20 Arnold D. Robbins <arnold@skeeve.com> + + * regex.h, regex.c, regex_internal.c, regex_internal.h: Sync + with GLIBC. Mainly copyright updates. + 2014-02-15 Arnold D. Robbins <arnold@skeeve.com> * awkgram.c, command.c: Regenerated - Bison 3.0.2. @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. @@ -1,6 +1,6 @@ /* Definitions for data structures and routines for the regular expression library. - Copyright (C) 1985, 1989-2013 Free Software Foundation, Inc. + Copyright (C) 1985, 1989-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -539,7 +539,7 @@ extern void re_set_registers (struct re_pattern_buffer *__buffer, regoff_t *__starts, regoff_t *__ends); #endif /* Use GNU */ -#if defined _REGEX_RE_COMP || (defined _LIBC && defined __USE_BSD) +#if defined _REGEX_RE_COMP || (defined _LIBC && defined __USE_MISC) # ifndef _CRAY /* 4.2 bsd compatibility. */ extern char *re_comp (const char *); diff --git a/regex_internal.c b/regex_internal.c index c7de18b6..10dd6e00 100644 --- a/regex_internal.c +++ b/regex_internal.c @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. diff --git a/regex_internal.h b/regex_internal.h index 448e32ea..c8981a08 100644 --- a/regex_internal.h +++ b/regex_internal.h @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. |