search for: 56f0b65c

Displaying 1 result from an estimated 1 matches for "56f0b65c".

Did you mean: 056f0b65
2019 Apr 12
0
[klibc:master] Fix missing include in sys/mman.h
...x/mman.h instead of asm/mman.h. Signed-off-by: Barret Rhoden <brho at google.com> Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- usr/include/sys/mman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/include/sys/mman.h b/usr/include/sys/mman.h index 56f0b65c..3fd626e7 100644 --- a/usr/include/sys/mman.h +++ b/usr/include/sys/mman.h @@ -7,7 +7,7 @@ #include <klibc/extern.h> #include <sys/types.h> -#include <asm/mman.h> +#include <linux/mman.h> #define MAP_FAILED ((void *)-1)