diff options
Diffstat (limited to 'Userland/Libraries/LibC/arch/x86_64/memset.cpp')
-rw-r--r-- | Userland/Libraries/LibC/arch/x86_64/memset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/arch/x86_64/memset.cpp b/Userland/Libraries/LibC/arch/x86_64/memset.cpp index a5e58a2d5b..8ff6667e6f 100644 --- a/Userland/Libraries/LibC/arch/x86_64/memset.cpp +++ b/Userland/Libraries/LibC/arch/x86_64/memset.cpp @@ -41,7 +41,7 @@ namespace { } } -#if !defined(__clang__) && !defined(_DYNAMIC_LOADER) +#if !defined(AK_COMPILER_CLANG) && !defined(_DYNAMIC_LOADER) [[gnu::ifunc("resolve_memset")]] void* memset(void*, int, size_t); #else // DynamicLoader can't self-relocate IFUNCs. |