diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-12-31 11:18:07 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-31 23:21:06 +0100 |
commit | 21622880cd86b5226d327d5f4e95d160d76879c7 (patch) | |
tree | a2ef2edf846e9b04fc56a8f5dc0ecc3da47ab29b /Userland/Libraries/LibC/sys/arch | |
parent | 25171e310bb2e710488781e318b21d635e63f71a (diff) | |
download | serenity-21622880cd86b5226d327d5f4e95d160d76879c7.zip |
LibC: Include aarch64 regs.h for AK_ARCH_AARCH64
Looks like this got mangled in the i686 removal.
Diffstat (limited to 'Userland/Libraries/LibC/sys/arch')
-rw-r--r-- | Userland/Libraries/LibC/sys/arch/regs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/sys/arch/regs.h b/Userland/Libraries/LibC/sys/arch/regs.h index 69c10d5fe7..87e1ca1302 100644 --- a/Userland/Libraries/LibC/sys/arch/regs.h +++ b/Userland/Libraries/LibC/sys/arch/regs.h @@ -10,4 +10,6 @@ #if ARCH(X86_64) # include "x86_64/regs.h" +#elif ARCH(AARCH64) +# include "aarch64/regs.h" #endif |