diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-01-23 16:39:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-01-23 16:39:34 +0000 |
commit | c1f0486aa07e29c79de14a5b43519355302a20f8 (patch) | |
tree | b1a0cca8acc5e43fcb7bbe30bc6b4133551314a7 | |
parent | 765bbb24bd0bc5da4e183b1f6f43196da0126ffb (diff) | |
download | glibc-c1f0486aa07e29c79de14a5b43519355302a20f8.zip glibc-c1f0486aa07e29c79de14a5b43519355302a20f8.tar.gz glibc-c1f0486aa07e29c79de14a5b43519355302a20f8.tar.bz2 |
* stdio-common/_itoa.c: Include <limits.h>.
* stdio-common/_itowa.c: Likewise.
-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
@@ -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 14ee85d..373843f 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 6f41d17..09a961d 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> |