1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

Better definition of "debug" macro for Win32 builds.

This commit is contained in:
David Galeano 2013-01-10 10:08:50 +08:00 committed by Andy Green
parent 7dd9bc57a5
commit 0d586c4930

View file

@ -98,14 +98,14 @@ void debug(const char *format, ...)
}
#else
#ifdef WIN32
static __inline
#define debug(...)
#else
static inline
#endif
void debug(const char *format, ...)
{
}
#endif
#endif
/*