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

LibC: Include aarch64 regs.h for AK_ARCH_AARCH64

Looks like this got mangled in the i686 removal.
This commit is contained in:
Andrew Kaster 2022-12-31 11:18:07 -07:00 committed by Andreas Kling
parent 25171e310b
commit 21622880cd

View file

@ -10,4 +10,6 @@
#if ARCH(X86_64) #if ARCH(X86_64)
# include "x86_64/regs.h" # include "x86_64/regs.h"
#elif ARCH(AARCH64)
# include "aarch64/regs.h"
#endif #endif