-#ifndef __IMPORT_CHECKER
-#define __IMPORT_CHECKER
+#ifndef _IMPORT_CHECKER
+#define _IMPORT_CHECKER
enum importck_type { ck_edef, ck_udef, ck_tdef, ck_oper, ck_item, ck_fdef };
ANN2(1) m_int gwi_oper_end(const Gwi gwi, const m_str op, const f_instr f);
ANN m_int gwi_oper_cond(const Gwi, const m_str, const f_instr, const f_instr);
ANN void gwi_oper_eff(const Gwi gwi, const m_str effect);
-#define _EQUALITY_OPER(sz, sign) \
+#define EQUALITY_OPER_INNER(sz, sign) \
POP_REG(shred, sz * 2 - SZ_INT); \
*(m_uint *)REG(-SZ_INT) = \
sign memcmp(shred->reg + SZ_INT, shred->reg + SZ_INT + sz, sz);
#define EQUALITY_OPER(name, sz) \
- static INSTR(name##_eq) { _EQUALITY_OPER(sz, !) } \
- static INSTR(name##_ne) { _EQUALITY_OPER(sz, !!) }
+ static INSTR(name##_eq) { _EQUALITY_OPER_INNER(sz, !) } \
+ static INSTR(name##_ne) { _EQUALITY_OPER_INNER(sz, !!) }
#endif