mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 20:02:09 +00:00
Workaround for isspace() with sgi and gcc
This commit is contained in:
parent
f7f02c7b58
commit
713e84ecae
1 changed files with 10 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue