1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

LibC: Move mman.h to sys/mman.h

POSIX mandates that it is placed there.
This commit is contained in:
Jean-Baptiste Boric 2021-05-14 17:38:33 +02:00 committed by Andreas Kling
parent e16894af5a
commit eecf7a2097
10 changed files with 45 additions and 54 deletions

View file

@ -10,11 +10,11 @@
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
#include <errno.h>
#include <mman.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <syscall.h>
static bool is_deadly_syscall(int fn)