Deleted Added
full compact
60c60
< if ((decimalpoint_cache = (char*)malloc(strlen(s0) + 1))) {
---
> if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
202c202
< for(k = 0; n > (1 << kshift-2) - 1; n >>= 1)
---
> for(k = 0; n > (1 << (kshift-2)) - 1; n >>= 1)
317c317
< && (lostbits & 1) | x[0] & 1)
---
> && (lostbits | x[0]) & 1)
336,337c336,337
< || (n = nbits & kmask) !=0
< && hi0bits(x[k-1]) < 32-n) {
---
> || ((n = nbits & kmask) !=0
> && hi0bits(x[k-1]) < 32-n)) {