Commit 6bc4b47c authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #3216 from kou/remove-needless-mrbapi

Remove needless MRB_API
parents 7a382e8b 91bd3ebd
...@@ -646,7 +646,7 @@ mrb_load_irep(mrb_state *mrb, const uint8_t *bin) ...@@ -646,7 +646,7 @@ mrb_load_irep(mrb_state *mrb, const uint8_t *bin)
#ifndef MRB_DISABLE_STDIO #ifndef MRB_DISABLE_STDIO
MRB_API mrb_irep* mrb_irep*
mrb_read_irep_file(mrb_state *mrb, FILE* fp) mrb_read_irep_file(mrb_state *mrb, FILE* fp)
{ {
mrb_irep *irep = NULL; mrb_irep *irep = NULL;
......
...@@ -135,7 +135,7 @@ mrb_proc_cfunc_env_get(mrb_state *mrb, mrb_int idx) ...@@ -135,7 +135,7 @@ mrb_proc_cfunc_env_get(mrb_state *mrb, mrb_int idx)
return e->stack[idx]; return e->stack[idx];
} }
MRB_API void void
mrb_proc_copy(struct RProc *a, struct RProc *b) mrb_proc_copy(struct RProc *a, struct RProc *b)
{ {
a->flags = b->flags; a->flags = b->flags;
......
...@@ -576,7 +576,7 @@ str_rindex(mrb_state *mrb, mrb_value str, mrb_value sub, mrb_int pos) ...@@ -576,7 +576,7 @@ str_rindex(mrb_state *mrb, mrb_value str, mrb_value sub, mrb_int pos)
} }
} }
MRB_API mrb_int mrb_int
mrb_str_strlen(mrb_state *mrb, struct RString *s) mrb_str_strlen(mrb_state *mrb, struct RString *s)
{ {
mrb_int i, max = RSTR_LEN(s); mrb_int i, max = RSTR_LEN(s);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment