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
commit 21622880cd
Notes: sideshowbarker 2024-07-17 02:55:44 +09:00

View file

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