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

Use __inline for Win32 builds.

This commit is contained in:
David Galeano 2013-01-10 10:07:16 +08:00 committed by Andy Green
parent a1b39732d7
commit 7dd9bc57a5
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#if 0
#ifdef WIN32
static
static __inline
#else
static inline
#endif
@ -12,7 +12,7 @@ void muxdebug(const char *format, ...)
}
#else
#ifdef WIN32
static
static __inline
#else
static inline
#endif

View file

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