Use 'MRB_FUNCTION' instead of 'MRB_METHOD' for modules

This commit is contained in:
Jonas Kulla 2013-09-03 11:06:01 +02:00
parent 121df799ab
commit d151986c72
9 changed files with 61 additions and 131 deletions

View file

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