diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-12-05 19:19:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-12-05 19:19:20 +0000 |
commit | 29132b91519572e6076003735cd6f718ff2e1369 (patch) | |
tree | 99ce33e32f1bf5e86d5a68639650498648face1c /posix/regex.c | |
parent | 350b053ae97f0764a5910fbf4fc168cb1216efbd (diff) | |
download | glibc-29132b91519572e6076003735cd6f718ff2e1369.zip glibc-29132b91519572e6076003735cd6f718ff2e1369.tar.gz glibc-29132b91519572e6076003735cd6f718ff2e1369.tar.bz2 |
Update.
* iconvdata/ibm1129.h: Remove duplicate mappings.
* iconvdata/ibm937.c: Handle overflow errors. Handle new tables.
* iconvdata/ibm937.h: Reorganize table to safe a lot of space.
Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
* timezone/zic.c: Fix handling of turnaround times.
Patch by Arthur David Olson <olsona@dc37a.nci.nih.gov>.
2001-12-02 Moshe Olshansky <OLSHANSK@il.ibm.com>
* sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): Fix
overflow problem.
2001-12-05 Ulrich Drepper <drepper@redhat.com>
* posix/regex.c: For use outside glibc defined bounded pointer
macros here. Patch by Jim Meyering <jim@meyering.net>.
Diffstat (limited to 'posix/regex.c')
-rw-r--r-- | posix/regex.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/posix/regex.c b/posix/regex.c index 567c7d0..f17a4fe 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -112,6 +112,13 @@ # define gettext_noop(String) String # endif +/* Support for bounded pointers. */ +# if !defined _LIBC && !defined __BOUNDED_POINTERS__ +# define __bounded /* nothing */ +# define __unbounded /* nothing */ +# define __ptrvalue /* nothing */ +# endif + /* The `emacs' switch turns on certain matching commands that make sense only in Emacs. */ # ifdef emacs |