diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | stdio-common/_itoa.c | 1 | ||||
-rw-r--r-- | stdio-common/_itowa.c | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 520b3ecc0d..bc4a7f7634 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-23 Ulrich Drepper <drepper@redhat.com> + + * stdio-common/_itoa.c: Include <limits.h>. + * stdio-common/_itowa.c: Likewise. + 2007-01-22 Ulrich Drepper <drepper@redhat.com> * stdio-common/_itowa.c: Don't compile _itowa for 64-bit diff --git a/stdio-common/_itoa.c b/stdio-common/_itoa.c index 14ee85d4e0..373843f1cd 100644 --- a/stdio-common/_itoa.c +++ b/stdio-common/_itoa.c @@ -22,6 +22,7 @@ #include <gmp-mparam.h> #include <gmp.h> +#include <limits.h> #include <stdlib/gmp-impl.h> #include <stdlib/longlong.h> diff --git a/stdio-common/_itowa.c b/stdio-common/_itowa.c index 6f41d17f0e..09a961dfaf 100644 --- a/stdio-common/_itowa.c +++ b/stdio-common/_itowa.c @@ -21,6 +21,7 @@ #include <gmp-mparam.h> #include <gmp.h> +#include <limits.h> #include <stdlib/gmp-impl.h> #include <stdlib/longlong.h> |