Skip to content

Commit b143b05

Browse files
authored
Replace global inclusions with local ones (#4991)
Resolve compiler errors created by amalgam.py tool.
1 parent 3686410 commit b143b05

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jerry-core/api/jerry-module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
* limitations under the License.
1414
*/
1515

16-
#include <lit-magic-strings.h>
17-
#include <lit-strings.h>
16+
#include "lit-magic-strings.h"
17+
#include "lit-strings.h"
1818

1919
#include "jerryscript-core.h"
2020
#include "jerryscript-port.h"

jerry-core/jrt/jrt-logging.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* limitations under the License.
1414
*/
1515

16-
#include <jrt.h>
16+
#include "jrt.h"
1717

1818
static jerry_log_level_t jerry_log_level = JERRY_LOG_LEVEL_ERROR;
1919

0 commit comments

Comments
 (0)