Fix an inconsistent include guard macro

I was thinking about making it internal/mjit.h, but didn't.
This commit is contained in:
Takashi Kokubun 2022-08-22 19:28:57 -07:00
parent c1ecc498e4
commit 545c2b0047
No known key found for this signature in database
GPG Key ID: 6FFC433B12EE23DD
1 changed files with 3 additions and 3 deletions

View File

@ -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 */