Skip to content

Commit

Permalink
core/fmt: remove BR_RESIDENT_ENTRY from FmtSTB*()
Browse files Browse the repository at this point in the history
They're our internals, not residents.
  • Loading branch information
vs49688 committed May 11, 2024
1 parent cf8964f commit ff93352
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions core/fmt/brstb.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
/*
* stb helper functions
*/
void *BR_RESIDENT_ENTRY FmtSTBMalloc(br_size_t size);
void *BR_RESIDENT_ENTRY FmtSTBRealloc(void *ptr, br_size_t size);
void BR_RESIDENT_ENTRY FmtSTBFree(void *ptr);
void BR_RESIDENT_ENTRY FmtSTBFileWrite(void *context, void *data, int size);
int BR_RESIDENT_ENTRY FmtSTBFileRead(void *user, char *data, int size);
void BR_RESIDENT_ENTRY FmtSTBFileAdvance(void *user, int n);
int BR_RESIDENT_ENTRY FmtSTBFileEof(void *user);
void *FmtSTBMalloc(br_size_t size);
void *FmtSTBRealloc(void *ptr, br_size_t size);
void FmtSTBFree(void *ptr);
void FmtSTBFileWrite(void *context, void *data, int size);
int FmtSTBFileRead(void *user, char *data, int size);
void FmtSTBFileAdvance(void *user, int n);
int FmtSTBFileEof(void *user);

/*
* stb_image defines & header
Expand Down

0 comments on commit ff93352

Please sign in to comment.