pike.git/src/global.h:82: Inside #if defined(_MSC_VER) and #if _MSC_VER <= 1900
*/
#if _MSC_VER <= 1900
/* VS 2015 or earlier do not have all C99 keywords...
* cf https://msdn.microsoft.com/en-us/library/bw1hbe6y.aspx
*/
#define inline __inline
#if _MSC_VER <= 1800
/* The isnan() macro was added in VS 2015.
*/
#define isnan(X) _isnan(X)
- #endif
- #endif
+ #endif /* _MSC_VER <= 1800 */
+ #endif /* _MSC_VER <= 1900 */
+ #endif /* _MSC_VER */
#endif /* __NT__ */
#ifdef __amigaos__
/* Avoid getting definitions of struct in_addr from <unistd.h>... */
#define __USE_NETINET_IN_H
#endif
/*
* Some structure forward declarations are needed.