diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-03-21 14:38:47 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-03-21 14:38:47 -0700 |
commit | 8e95c99a7a0b0ca8cf9bfbeddf1e43fb3efc1bee (patch) | |
tree | 2e038a43f7b15ea609cb9e37a98fc4f9eb8a83e0 /ChangeLog | |
parent | 6f4db457f8300d9d58fe5f931cdf9f54c0fde2a2 (diff) | |
download | glibc-8e95c99a7a0b0ca8cf9bfbeddf1e43fb3efc1bee.tar.gz glibc-8e95c99a7a0b0ca8cf9bfbeddf1e43fb3efc1bee.tar.xz glibc-8e95c99a7a0b0ca8cf9bfbeddf1e43fb3efc1bee.zip |
Add _ITOA_NEEDED and _ITOA_WORD_TYPE
Add _ITOA_NEEDED and _ITOA_WORD_TYPE to override _itoa and _itowa.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 5b3567a281..67e4eccfda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +2012-03-21 H.J. Lu <hongjiu.lu@intel.com> + + * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of + LLONG_MAX != LONG_MAX. + (_itoa_word): Use _ITOA_WORD_TYPE on value. + (_fitoa_word): Likewise. + * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of + LLONG_MAX != LONG_MAX. + * stdio-common/_itowa.h: Include <_itoa.h>. + (_itowa_word): Use _ITOA_WORD_TYPE on value. + (_itowa): New macro. Defined only if _ITOA_NEEDED is false. + * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro. Defined + only if not defined. + (_ITOA_WORD_TYPE): Likewise. + (_itoa_word): Use _ITOA_WORD_TYPE on value. + Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX. + 2012-03-21 David S. Miller <davem@davemloft.net> * sysdeps/sparc/fpu/libm-test-ulps: Update. |