From 824f22a3684209b1e11c87f20e6ff17beb8e73a3 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 29 May 2024 16:07:14 -0400 Subject: finish integrating jkmalloc and read-only variable support --- src/_forced/mprotect.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/_forced/mprotect.h') diff --git a/src/_forced/mprotect.h b/src/_forced/mprotect.h index 5abbe5ed..717778de 100644 --- a/src/_forced/mprotect.h +++ b/src/_forced/mprotect.h @@ -1,9 +1,6 @@ -#ifdef _POSIX_C_SOURCE -#include -#else +//#include #include "_syscall.h" #define mprotect(__ptr, __len, __prot) __syscall(__sys_mprotect, __ptr, __len, __prot) #define PROT_NONE 0x0 #define PROT_READ 0x1 #define PROT_WRITE 0x2 -#endif -- cgit v1.2.1