Skip to content

Commit

Permalink
Remove unnecessary MRB_API from read_irep related functions; ref #3215
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Sep 23, 2016
1 parent 77d004e commit 7a382e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/load.c
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ read_binary_header(const uint8_t *bin, size_t *bin_size, uint16_t *crc, uint8_t
return MRB_DUMP_OK;
}

MRB_API mrb_irep*
static mrb_irep*
read_irep(mrb_state *mrb, const uint8_t *bin, uint8_t flags)
{
int result;
Expand Down Expand Up @@ -602,7 +602,7 @@ read_irep(mrb_state *mrb, const uint8_t *bin, uint8_t flags)
return irep;
}

MRB_API mrb_irep*
mrb_irep*
mrb_read_irep(mrb_state *mrb, const uint8_t *bin)
{
#ifdef MRB_USE_ETEXT_EDATA
Expand Down

0 comments on commit 7a382e8

Please sign in to comment.