From 545c2b0047309e3a94745cea95d36d44f2223276 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 22 Aug 2022 19:28:57 -0700 Subject: Fix an inconsistent include guard macro I was thinking about making it internal/mjit.h, but didn't. --- mjit_unit.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mjit_unit.h') diff --git a/mjit_unit.h b/mjit_unit.h index 2e23a8d5fc..8f80a070e0 100644 --- a/mjit_unit.h +++ b/mjit_unit.h @@ -1,5 +1,5 @@ -#ifndef INTERNAL_MJIT_H -#define INTERNAL_MJIT_H +#ifndef MJIT_UNIT_H +#define MJIT_UNIT_H #include "ccan/list/list.h" @@ -26,4 +26,4 @@ struct rb_mjit_unit { unsigned int cc_entries_size; // ISEQ_BODY(iseq)->ci_size + ones of inlined iseqs }; -#endif /* INTERNAL_MJIT_H */ +#endif /* MJIT_UNIT_H */ -- cgit v1.2.3