Skip to content

Commit 545c2b0

Browse files
committed
Fix an inconsistent include guard macro
I was thinking about making it internal/mjit.h, but didn't.
1 parent c1ecc49 commit 545c2b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mjit_unit.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef INTERNAL_MJIT_H
2-
#define INTERNAL_MJIT_H
1+
#ifndef MJIT_UNIT_H
2+
#define MJIT_UNIT_H
33

44
#include "ccan/list/list.h"
55

@@ -26,4 +26,4 @@ struct rb_mjit_unit {
2626
unsigned int cc_entries_size; // ISEQ_BODY(iseq)->ci_size + ones of inlined iseqs
2727
};
2828

29-
#endif /* INTERNAL_MJIT_H */
29+
#endif /* MJIT_UNIT_H */

0 commit comments

Comments
 (0)