diff options
Diffstat (limited to 'userland/libc/sys/mman.h')
-rw-r--r-- | userland/libc/sys/mman.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/sys/mman.h b/userland/libc/sys/mman.h index e3ff734..a915291 100644 --- a/userland/libc/sys/mman.h +++ b/userland/libc/sys/mman.h @@ -1,7 +1,7 @@ #ifndef MMAP_H #define MMAP_H -#include <stdint.h> #include <stddef.h> +#include <stdint.h> void *mmap(void *addr, size_t length, int prot, int flags, int fd, size_t offset); |