diff options
author | Liav A <liavalb@gmail.com> | 2020-02-09 16:58:26 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-09 19:38:17 +0100 |
commit | 2a699cec98f1477990baf125cacc2d04bbaae41d (patch) | |
tree | 42bdbb13fcfbdf285a7d356a2c213a7299d2eb8c | |
parent | 1266c9ab8877a027e039f53dc60210db21141fbe (diff) | |
download | serenity-2a699cec98f1477990baf125cacc2d04bbaae41d.zip |
LibC: Apply a change for the Bootstrapper environment
-rw-r--r-- | Libraries/LibC/stdarg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/stdarg.h b/Libraries/LibC/stdarg.h index 9689c75469..e2b0c48a41 100644 --- a/Libraries/LibC/stdarg.h +++ b/Libraries/LibC/stdarg.h @@ -26,7 +26,7 @@ #pragma once -#ifdef KERNEL +#if defined(KERNEL) || defined(BOOTSTRAPPER) # define __BEGIN_DECLS # define __END_DECLS #else |