Cygwin defines wint_t as unsigned int (valid, per POSIX), but then defines #ifndef WINT_MIN #define WINT_MIN (-2147483647 - 1) #define WINT_MAX (2147483647) #endif
which is invalid given the underlying type of wint_t. Can we get this fixed (either make wint_t a signed type, or change WINT_MIN and WINT_MAX)? -- Eric Blake -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/