diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-11-15 18:27:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-11-15 18:27:28 +0000 |
commit | f6b20a369edc673dda3cbf566d759d3a2e70037a (patch) | |
tree | c08a0e4894f210e1d9911d95d9163b67dd7d0c05 | |
parent | 447e5dfd2b8e262a2708a8993db96a2c81f52f64 (diff) | |
download | glibc-f6b20a369edc673dda3cbf566d759d3a2e70037a.zip glibc-f6b20a369edc673dda3cbf566d759d3a2e70037a.tar.gz glibc-f6b20a369edc673dda3cbf566d759d3a2e70037a.tar.bz2 |
Update.
2001-11-15 Jeff Law <law@redhat.com>
* posix/regex.c (uintptr_t): Do not provide a definition if the
system provided one.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | posix/regex.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-11-15 Jeff Law <law@redhat.com> + + * posix/regex.c (uintptr_t): Do not provide a definition if the + system provided one. + 2001-11-13 Roland McGrath <roland@frob.com> * stdio-common/tmpfile.c: Moved to ... diff --git a/posix/regex.c b/posix/regex.c index 1435a80..bf85cbd 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -297,7 +297,7 @@ init_syntax_once () # endif /* emacs */ /* Integer type for pointers. */ -# if !defined _LIBC +# if !defined _LIBC && !defined HAVE_UINTPTR_T typedef unsigned long int uintptr_t; # endif |