1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

LibC: Make sure ARCH macro is available before use

This commit is contained in:
Ben Wiederhake 2021-09-16 20:31:49 +02:00 committed by Linus Groh
parent 7cd0440571
commit 8ba572d650

View file

@ -6,6 +6,8 @@
#pragma once
#include <AK/Platform.h>
#if ARCH(I386)
# include "i386/regs.h"
#elif ARCH(X86_64)