From b143b050ccaa51f991f5adfe222c486d348a0d11 Mon Sep 17 00:00:00 2001 From: Damiano Mazzella Date: Mon, 22 Aug 2022 16:06:21 +0200 Subject: [PATCH] Replace global inclusions with local ones (#4991) Resolve compiler errors created by amalgam.py tool. --- jerry-core/api/jerry-module.c | 4 ++-- jerry-core/jrt/jrt-logging.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jerry-core/api/jerry-module.c b/jerry-core/api/jerry-module.c index b262a7c2f..782f001d2 100644 --- a/jerry-core/api/jerry-module.c +++ b/jerry-core/api/jerry-module.c @@ -13,8 +13,8 @@ * limitations under the License. */ -#include -#include +#include "lit-magic-strings.h" +#include "lit-strings.h" #include "jerryscript-core.h" #include "jerryscript-port.h" diff --git a/jerry-core/jrt/jrt-logging.c b/jerry-core/jrt/jrt-logging.c index 78ff2c5e9..512abb6bd 100644 --- a/jerry-core/jrt/jrt-logging.c +++ b/jerry-core/jrt/jrt-logging.c @@ -13,7 +13,7 @@ * limitations under the License. */ -#include +#include "jrt.h" static jerry_log_level_t jerry_log_level = JERRY_LOG_LEVEL_ERROR;