diff options
Diffstat (limited to 'userland/libc/stdlib/atof.c')
-rw-r--r-- | userland/libc/stdlib/atof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/stdlib/atof.c b/userland/libc/stdlib/atof.c index 8524f8b..f008852 100644 --- a/userland/libc/stdlib/atof.c +++ b/userland/libc/stdlib/atof.c @@ -1,5 +1,5 @@ #include <stdlib.h> double atof(const char *str) { - return strtod(str,(char **)NULL); + return strtod(str, (char **)NULL); } |