diff options
Diffstat (limited to 'userland/libc/malloc/malloc.h')
-rw-r--r-- | userland/libc/malloc/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/malloc/malloc.h b/userland/libc/malloc/malloc.h index 596dbe5..d6a6ab7 100644 --- a/userland/libc/malloc/malloc.h +++ b/userland/libc/malloc/malloc.h @@ -1,7 +1,7 @@ #ifndef MALLOC_H #define MALLOC_H -#include <stdint.h> #include <stddef.h> +#include <stdint.h> void *malloc(size_t s); void *calloc(size_t nelem, size_t elsize); |