summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-09-01 11:01:50 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-09-01 11:01:50 +0900
commit0c6353aa2cf8b002d2540c8b66db7d5af730f503 (patch)
tree6b40357208f7a90c9b8860d7fcf13ed20bd6c2da
parent2be42aef0f7970ba1510469e8469f3e3c2af3bd4 (diff)
downloadmruby-0c6353aa2cf8b002d2540c8b66db7d5af730f503.tar.gz
mruby-0c6353aa2cf8b002d2540c8b66db7d5af730f503.zip
Remove `MRB_API` from `mrb_f_send` which is not API.
-rw-r--r--include/mruby/proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/proc.h b/include/mruby/proc.h
index aa281b6dd..f428e6666 100644
--- a/include/mruby/proc.h
+++ b/include/mruby/proc.h
@@ -88,7 +88,7 @@ MRB_API struct RProc *mrb_closure_new_cfunc(mrb_state *mrb, mrb_func_t func, int
void mrb_proc_copy(struct RProc *a, struct RProc *b);
/* implementation of #send method */
-MRB_API mrb_value mrb_f_send(mrb_state *mrb, mrb_value self);
+mrb_value mrb_f_send(mrb_state *mrb, mrb_value self);
/* following functions are defined in mruby-proc-ext so please include it when using */
MRB_API struct RProc *mrb_proc_new_cfunc_with_env(mrb_state*, mrb_func_t, mrb_int, const mrb_value*);