diff options
Diffstat (limited to 'userland/libc/stdlib/strtod.c')
-rw-r--r-- | userland/libc/stdlib/strtod.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/userland/libc/stdlib/strtod.c b/userland/libc/stdlib/strtod.c index 2c83879..01119bb 100644 --- a/userland/libc/stdlib/strtod.c +++ b/userland/libc/stdlib/strtod.c @@ -1,8 +1,10 @@ +#include <assert.h> #include <ctype.h> #include <stdlib.h> -#include <assert.h> -int ctoi(char c) { return c - '0'; } +int ctoi(char c) { + return c - '0'; +} double strtod(const char *restrict nptr, char **restrict endptr) { double r = 0; |