Release calc version 2.11.0t5

This commit is contained in:
Landon Curt Noll
1999-10-04 20:08:04 -07:00
parent 97e9429000
commit f60cbd24b2
38 changed files with 781 additions and 192 deletions

3
zio.c
View File

@@ -238,6 +238,7 @@ math_getdivertedio(void)
outbufused = sp->outbufused;
outbuf = sp->outbuf;
outputisstring = sp->outputisstring;
free(sp);
return cp;
}
@@ -394,7 +395,7 @@ zprintb(ZVALUE z, long width)
PUTSTR("0b");
while (len-- >= 0) {
val = *hp--;
mask = (1 << (BASEB - 1));
mask = ((HALF)1 << (BASEB - 1));
while (mask) {
ch = '0' + ((mask & val) != 0);
if (didprint || (ch != '0')) {