Fixed Solaris nitpicks (thanks Mattias!)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40167
This commit is contained in:
Sam Lantinga 2001-09-04 22:48:09 +00:00
parent b29480bdb9
commit ee5429fd3e
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