1
0
forked from GitHub/gf-core

more changes to make the C runtime compilable with MSVC

This commit is contained in:
krasimir
2017-04-19 18:59:42 +00:00
parent 07d72532fa
commit ba038914fa
10 changed files with 41 additions and 32 deletions

View File

@@ -101,7 +101,7 @@ inline void
gu_out_u8(GuOut* restrict out, uint8_t u, GuExn* err)
{
if (GU_UNLIKELY(!gu_out_try_u8_(out, u))) {
extern void gu_out_u8_(GuOut* restrict out, uint8_t u,
GU_API_DECL void gu_out_u8_(GuOut* restrict out, uint8_t u,
GuExn* err);
gu_out_u8_(out, u, err);
}