Workaround for isspace() with sgi and gcc

This commit is contained in:
Loring Holden 2000-02-03 08:44:01 +00:00
parent f7f02c7b58
commit 713e84ecae

View file

@ -22,8 +22,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// cl_main.c -- client main loop
/* Will have problems with isspace() when comiling w/ gcc on SGI without this */
#ifdef sgi
#define _LINT
#define UNDEFINE_LINT
#endif
#include <ctype.h>
#ifdef UNDEFINE_LINT
#undef _LINT
#endif
#include "quakedef.h"
#include "winquake.h"
#include "pmove_simple.h"