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
Родитель c1ecc498e4
Коммит 545c2b0047
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

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