pike.git/src/global.h:86: Inside #if defined(_MSC_VER)
*/
#define inline __inline
#if _MSC_VER <= 1800
/* The isnan() macro was added in VS 2015.
*/
#define isnan(X) _isnan(X)
#endif /* _MSC_VER <= 1800 */
#endif /* _MSC_VER <= 1900 */
#endif /* _MSC_VER */
+ /* NB: Defaults to 64. */
+ #ifndef FD_SETSIZE
+ /*
+ * In reality: almost unlimited actually.
+ */
+ #define FD_SETSIZE 65536
+ #endif /* FD_SETSIZE */
+
#endif /* __NT__ */
/*
* Some structure forward declarations are needed.
*/
/* This is needed for linux */
#ifdef MALLOC_REPLACED
#define NO_FIX_MALLOC
#endif