Fix linker error

This commit is contained in:
Roger Light 2021-08-22 07:55:10 +01:00
parent 6608e852a1
commit 33349010cd

View File

@ -106,6 +106,15 @@ static FILE *mpw_tmpfile(void)
}
#endif
int log__printf(void *mosq, unsigned int level, const char *fmt, ...)
{
/* Stub for misc_mosq.c */
UNUSED(mosq);
UNUSED(level);
UNUSED(fmt);
return 0;
}
static void print_usage(void)
{