diff options
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/xregex2.h | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index d557750..063e082 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2005-07-12 Ben Elliston <bje@au.ibm.com> + + * xregex2.h (regexec): Qualify this prototype with __extension__ + when compiling with GNU C. + 2005-07-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * dis-asm.h (fprintf_ftype): Add format attribute. diff --git a/include/xregex2.h b/include/xregex2.h index 358f31e..d3d0da1 100644 --- a/include/xregex2.h +++ b/include/xregex2.h @@ -1,6 +1,9 @@ /* Definitions for data structures and routines for the regular expression library, version 0.12. - Copyright (C) 1985,1989-1993,1995-1998, 2000 Free Software Foundation, Inc. + + Copyright (C) 1985, 1989, 1990, 1991, 1992, 1993, 1995, 1996, 1997, + 1998, 2000, 2005 Free Software Foundation, Inc. + This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in /gd/gnu/lib. @@ -533,6 +536,9 @@ extern int regcomp (regex_t *__restrict __preg, const char *__restrict __pattern, int __cflags); +#if (__GNUC__) +__extension__ +#endif extern int regexec (const regex_t *__restrict __preg, const char *__restrict __string, size_t __nmatch, regmatch_t __pmatch[__restrict_arr], |