1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

Kernel+Userland: Remove uses of the __i386__ compiler macro

This commit is contained in:
Andreas Kling 2022-12-25 18:43:58 +01:00
parent 36980d2a66
commit 7b9ea3efde
5 changed files with 6 additions and 37 deletions

View file

@ -39,11 +39,7 @@
# include <AK/Types.h>
#endif
#ifdef __i386__
# define ElfW(type) Elf32_##type
#else
# define ElfW(type) Elf64_##type
#endif
#define ElfW(type) Elf64_##type
typedef uint8_t Elf_Byte;