diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-23 05:47:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-23 05:47:54 +0000 |
commit | 5d78bb43349cbd51805bcf0682af08a45b9988b8 (patch) | |
tree | 67346d5e1ba1e742cc5a1b2a11baa0002b4a7fc3 | |
parent | e2b6bfa33950b3fa75f2b473f4b6659da3d53b4a (diff) | |
download | glibc-5d78bb43349cbd51805bcf0682af08a45b9988b8.tar.gz glibc-5d78bb43349cbd51805bcf0682af08a45b9988b8.tar.xz glibc-5d78bb43349cbd51805bcf0682af08a45b9988b8.zip |
Update.
2003-09-22 Ulrich Drepper <drepper@redhat.com> * malloc/malloc.c: Include <stdint.h>.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | localedata/ChangeLog | 7 | ||||
-rw-r--r-- | malloc/malloc.c | 2 |
3 files changed, 6 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog index 9fc0a6576c..798793a00b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-09-22 Ulrich Drepper <drepper@redhat.com> + + * malloc/malloc.c: Include <stdint.h>. + 2003-09-20 Paolo Bonzini <bonzini@gnu.org> * posix/regcomp.c (build_word_op): Rename like... diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 0458879d70..ff8034e543 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -5,13 +5,6 @@ * locales/eu_ES: Fix int_frac_digits and frac_digits values. * locales/gl_ES: Likewise. -2003-09-21 Jordi Mallach <jordi@gnu.org> - - * locales/ca_ES: Fix mon_grouping, int_frac_digits and frac_digits - values. - * locales/eu_ES: Fix int_frac_digits and frac_digits values. - * locales/gl_ES: Likewise. - 2003-09-17 Ulrich Drepper <drepper@redhat.com> * locales/lo_LA: Fix duplicated collation entries. diff --git a/malloc/malloc.c b/malloc/malloc.c index 442f17e71a..1cb374df26 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -275,6 +275,8 @@ extern "C" { #include <stdio.h> /* needed for malloc_stats */ #include <errno.h> /* needed for optional MALLOC_FAILURE_ACTION */ +/* For uintptr_t. */ +#include <stdint.h> /* Debugging: |