diff options
Diffstat (limited to 'src/userspace/libc')
-rw-r--r-- | src/userspace/libc/stdio/vprintf.c | 2 | ||||
-rw-r--r-- | src/userspace/libc/stdlib/atoi.c | 2 | ||||
-rw-r--r-- | src/userspace/libc/stdlib/htoi.c | 4 | ||||
-rw-r--r-- | src/userspace/libc/stdlib/itoa.c | 2 | ||||
-rw-r--r-- | src/userspace/libc/syscall.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/userspace/libc/stdio/vprintf.c b/src/userspace/libc/stdio/vprintf.c index dc5ed23..691f153 100644 --- a/src/userspace/libc/stdio/vprintf.c +++ b/src/userspace/libc/stdio/vprintf.c @@ -1,5 +1,5 @@ -#include <stdint.h> #include <stdarg.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> diff --git a/src/userspace/libc/stdlib/atoi.c b/src/userspace/libc/stdlib/atoi.c index dbfe0cb..80897eb 100644 --- a/src/userspace/libc/stdlib/atoi.c +++ b/src/userspace/libc/stdlib/atoi.c @@ -1,7 +1,7 @@ +#include <math.h> #include <stddef.h> #include <stdint.h> #include <string.h> -#include <math.h> int atoi(char *str) { diff --git a/src/userspace/libc/stdlib/htoi.c b/src/userspace/libc/stdlib/htoi.c index 8897d20..0d0ab30 100644 --- a/src/userspace/libc/stdlib/htoi.c +++ b/src/userspace/libc/stdlib/htoi.c @@ -1,6 +1,6 @@ -#include <stdint.h> -#include <stddef.h> #include <math.h> +#include <stddef.h> +#include <stdint.h> #include <string.h> int htoi(char *str) 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"; diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c index 4b5c200..5a9fda8 100644 --- a/src/userspace/libc/syscall.c +++ b/src/userspace/libc/syscall.c @@ -1,5 +1,5 @@ -#include <stdint.h> #include <common.h> +#include <stdint.h> #include <syscall.h> /** |