C89 MSVC doesn't support 'inline' - will have to make define for

INLINE that can be redefined by MSVC
This commit is contained in:
twinaphex
2014-03-17 17:37:20 +01:00
parent 5345c2b9bc
commit 4835077e00
12 changed files with 12 additions and 13 deletions

View File

@@ -26,6 +26,6 @@ int pdb_net_connect(const char *host, const char *port);
#else
static inline int pdb_net_connect(const char *host, const char *port) {return 0;}
static INLINE int pdb_net_connect(const char *host, const char *port) {return 0;}
#endif