Use 'MRB_METHOD' macro

This commit is contained in:
Jonas Kulla 2013-09-03 10:48:20 +02:00
parent 8674cb8e06
commit 121df799ab
4 changed files with 91 additions and 82 deletions

View file

@ -882,9 +882,10 @@ verifyMarshalHeader(MarshalContext *ctx)
throw Exception(Exception::TypeError, "incompatible marshal file format (can't be read)");
}
static mrb_value
marshalDump(mrb_state *mrb, mrb_value)
MRB_METHOD(marshalDump)
{
MRB_UNUSED_PARAM;
mrb_value val;
mrb_value port = mrb_nil_value();
mrb_int limit = 100;
@ -944,9 +945,10 @@ marshalDump(mrb_state *mrb, mrb_value)
return ret;
}
static mrb_value
marshalLoad(mrb_state *mrb, mrb_value)
MRB_METHOD(marshalLoad)
{
MRB_UNUSED_PARAM;
mrb_value port;
mrb_get_args(mrb, "o", &port);