diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-10-09 15:23:23 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-10 12:23:12 +0200 |
commit | 828441852f803a67c771910702baefe12cf2d995 (patch) | |
tree | f76838c0f99d57648b493f4cd00167a467ac4cbd /AK/PrintfImplementation.h | |
parent | 896d4e8dc1a91f577231afef9d127b51d7cc3630 (diff) | |
download | serenity-828441852f803a67c771910702baefe12cf2d995.zip |
Everywhere: Replace uses of __serenity__ with AK_OS_SERENITY
Now that we have OS macros for essentially every supported OS, let's try
to use them everywhere.
Diffstat (limited to 'AK/PrintfImplementation.h')
-rw-r--r-- | AK/PrintfImplementation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/PrintfImplementation.h b/AK/PrintfImplementation.h index 03a00f58f9..5d590f1d5c 100644 --- a/AK/PrintfImplementation.h +++ b/AK/PrintfImplementation.h @@ -16,7 +16,7 @@ # include <math.h> #endif -#ifdef __serenity__ +#ifdef AK_OS_SERENITY extern "C" size_t strlen(char const*); #else # include <string.h> |