diff options
author | Takashi Kokubun <[email protected]> | 2022-08-22 19:28:57 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-08-22 19:28:58 -0700 |
commit | 545c2b0047309e3a94745cea95d36d44f2223276 (patch) | |
tree | e49b08dc12f85985534d43a58aef7cd1059c3a67 | |
parent | c1ecc498e4b879c85ee9ea7bfb3cf496777b6fcc (diff) |
Fix an inconsistent include guard macro
I was thinking about making it internal/mjit.h, but didn't.
-rw-r--r-- | mjit_unit.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |