Skip to content

Commit b116703

Browse files
authored
Merge pull request #12 from take-cheeze/patch-1
2 parents b52c76b + b8e7f6a commit b116703

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/stringio.c

+4
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ original is https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c
2323

2424
// For compatibility before https://github.com/mruby/mruby/pull/3340
2525
#ifndef MRB_FROZEN_P
26+
#ifdef mrb_frozen_p
27+
#define MRB_FROZEN_P(o) mrb_frozen_p(o)
28+
#else
2629
#define MRB_FROZEN_P(o) RSTR_FROZEN_P(o)
2730
#endif
31+
#endif
2832

2933
struct StringIO {
3034
mrb_int pos;

0 commit comments

Comments
 (0)