diff options
Diffstat (limited to 'src/userspace/libc/stdlib/itoa.c')
-rw-r--r-- | src/userspace/libc/stdlib/itoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userspace/libc/stdlib/itoa.c b/src/userspace/libc/stdlib/itoa.c index b8aa73e..b960796 100644 --- a/src/userspace/libc/stdlib/itoa.c +++ b/src/userspace/libc/stdlib/itoa.c @@ -1,6 +1,6 @@ +#include <math.h> #include <stdint.h> #include <stdlib.h> -#include <math.h> #include <string.h> static const char ITOA_TABLE[] = "0123456789"; |