diff options
author | sinanmohd <pcmsinan@gmail.com> | 2022-06-13 11:30:45 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2022-06-13 11:31:05 +0530 |
commit | c67ff09a3f010b481751a0b6983239217062703d (patch) | |
tree | efcc3ed8cdbcc9571be20b1499e8cb214bf386de /4.2.c | |
parent | 31a036f54543af5c6d9cabea58b021620e888035 (diff) |
add till 4.6
Diffstat (limited to '4.2.c')
-rw-r--r-- | 4.2.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -71,10 +71,10 @@ atof(const char str[]) if (e_sign < 0) for (j = 0; j < e_power; j++) - power *= 10; + power *= 10.0; else for (j = 0; j < e_power; j++) - power /= 10; + power /= 10.0; return (sign * val / power); } |