Remove MRB_ENDIAN_LOHI() that is no longer in use

This commit is contained in:
dearblue
2025-03-21 21:56:42 +09:00
parent ed00879923
commit 4e7399d4f4
-6
View File
@@ -94,12 +94,6 @@ struct mrb_state;
# define MRB_PRIx PRIx32
#endif
#ifdef MRB_ENDIAN_BIG
# define MRB_ENDIAN_LOHI(a,b) a b
#else
# define MRB_ENDIAN_LOHI(a,b) b a
#endif
MRB_API mrb_bool mrb_read_int(const char *p, const char *e, char **endp, mrb_int *np);
/* obsolete; do not use mrb_int_read() */
MRB_API mrb_int mrb_int_read(const char*, const char*, char**);