We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b52c76b + b8e7f6a commit b116703Copy full SHA for b116703
src/stringio.c
@@ -23,8 +23,12 @@ original is https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.c
23
24
// For compatibility before https://github.com/mruby/mruby/pull/3340
25
#ifndef MRB_FROZEN_P
26
+#ifdef mrb_frozen_p
27
+#define MRB_FROZEN_P(o) mrb_frozen_p(o)
28
+#else
29
#define MRB_FROZEN_P(o) RSTR_FROZEN_P(o)
30
#endif
31
+#endif
32
33
struct StringIO {
34
mrb_int pos;
0 commit comments