summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/elf.h
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-07-13 15:50:19 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-13 23:19:33 +0200
commit4cf24c6ba2a3152733312b3a121335fbe57cd133 (patch)
tree6d66b0893111aedeec03f2860aa8cdb3b3e83546 /Userland/Libraries/LibC/elf.h
parentde4ba1f39b2c6db213bc499abcb5060ca05300bb (diff)
downloadserenity-4cf24c6ba2a3152733312b3a121335fbe57cd133.zip
Userland: Prefer using ARCH() over __LP64__
Diffstat (limited to 'Userland/Libraries/LibC/elf.h')
-rw-r--r--Userland/Libraries/LibC/elf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/elf.h b/Userland/Libraries/LibC/elf.h
index 0edd9f6cd7..c50742b80c 100644
--- a/Userland/Libraries/LibC/elf.h
+++ b/Userland/Libraries/LibC/elf.h
@@ -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