From 2a699cec98f1477990baf125cacc2d04bbaae41d Mon Sep 17 00:00:00 2001 From: Liav A Date: Sun, 9 Feb 2020 16:58:26 +0200 Subject: [PATCH] LibC: Apply a change for the Bootstrapper environment --- Libraries/LibC/stdarg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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