From 91bd3ebd32097d6f26e0ee18b73b27692c171a26 Mon Sep 17 00:00:00 2001 From: Kouhei Sutou Date: Sun, 25 Sep 2016 21:47:32 +0900 Subject: Remove needless MRB_API ref #3215 If a function (such as mrb_read_irep_file()) is declared without MRB_API in header file (such as include/mruby/dump.h), implementation of the function in source file (such as src/load.c) should also defined without MRB_API. If MRB_API is mismatch, Visual C++ reports link error with C2375 error code: https://msdn.microsoft.com/en-us/library/5k6kw95a.aspx --- src/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string.c') diff --git a/src/string.c b/src/string.c index 15fcc502a..61aa08577 100644 --- a/src/string.c +++ b/src/string.c @@ -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_int i, max = RSTR_LEN(s); -- cgit v1.2.3