* FRIGN <d...@frign.de> [2014-03-03 19:39:13 +0100]:
> +static void log(int type, const char *errstr, ...);

note that stdlib.h may include math.h which declares log
with a different type

such namespace issues can be fixed by using another name or

 #undef log
 #define log quark_log

after the header includes and before the declarations

Reply via email to