mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
AK: Stub out the NAKED macro on AARCH64
This is almost certainly incorrect but we'll see about that once the kernel actually gets to userspace init.
This commit is contained in:
parent
5921df75b6
commit
7a8206197e
1 changed files with 5 additions and 1 deletions
|
@ -123,7 +123,11 @@
|
||||||
#ifdef NAKED
|
#ifdef NAKED
|
||||||
# undef NAKED
|
# undef NAKED
|
||||||
#endif
|
#endif
|
||||||
#define NAKED __attribute__((naked))
|
#ifndef AK_ARCH_AARCH64
|
||||||
|
# define NAKED __attribute__((naked))
|
||||||
|
#else
|
||||||
|
# define NAKED
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef DISALLOW
|
#ifdef DISALLOW
|
||||||
# undef DISALLOW
|
# undef DISALLOW
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue