1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 07:17:34 +00:00

Userland: Prefer using ARCH() over __LP64__

This commit is contained in:
Gunnar Beutner 2021-07-13 15:50:19 +02:00 committed by Andreas Kling
parent de4ba1f39b
commit 4cf24c6ba2
5 changed files with 13 additions and 18 deletions

View file

@ -38,7 +38,7 @@
# include <AK/Types.h>
#endif
#ifdef __LP64__
#ifdef __x86_64__
# define ElfW(type) Elf64_##type
#else
# define ElfW(type) Elf32_##type