Merge pull request #6495 from dearblue/cleanup

Remove `MRB_ENDIAN_LOHI()` that is no longer in use
This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-03-22 11:15:36 +09:00
committed by GitHub
-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**);