malloc now allows users to use sbrk too,

setjmp/longjmp now save/restore the signal mask on BSD 4.2 systems,
some minor mods in atof
This commit is contained in:
ceriel
1988-02-16 17:48:39 +00:00
parent 7bc8ed1270
commit d034f5145c
3 changed files with 45 additions and 18 deletions

View File

@@ -62,8 +62,8 @@ atof(p)
if (exp != 0) {
int oldexp = exp;
double exp5 = 5;
double correction = 1;
double exp5 = 5.0;
double correction = 1.0;
while (exp) {
if (exp % 2) correction *= exp5;