Fixed Solaris nitpicks (thanks Mattias!)

This commit is contained in:
Sam Lantinga
2001-09-04 22:48:09 +00:00
parent b236717d4e
commit e51e5b7d1e
4 changed files with 14 additions and 43 deletions

View File

@@ -46,11 +46,11 @@ static char rcsid =
/* The following defines should really be determined at configure time */
#ifdef linux
#if defined(linux)
/* Linux select() changes its timeout parameter upon return to contain
the remaining time. Most other unixen leave it unchanged or undefined. */
#define SELECT_SETS_REMAINING
#elif defined(__bsdi__) || defined(__FreeBSD__) || defined(__sun__)
#elif defined(__bsdi__) || defined(__FreeBSD__) || defined(__sun)
#define USE_NANOSLEEP
#endif