From 42a2bdaecaee627247689b3f4ff2828fe3c8dc97 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Thu, 11 Sep 2025 14:37:04 -0400 Subject: load init from ELF executable --- include/elf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/elf.h') diff --git a/include/elf.h b/include/elf.h index 05e3e83..acd0aea 100644 --- a/include/elf.h +++ b/include/elf.h @@ -89,9 +89,9 @@ typedef struct { #define PT_NULL 0 #define PT_LOAD 1 -#define PF_X 1 -#define PF_W 2 -#define PF_R 4 +#define PF_X 0x1 +#define PF_W 0x2 +#define PF_R 0x4 typedef struct { -- cgit v1.2.1