diff options
author | Tim Angus <tim@ngus.net> | 2006-02-24 22:04:35 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-02-24 22:04:35 +0000 |
commit | e9456d7a58fc721cc5c931838399d9734b6fd971 (patch) | |
tree | ece21f7411a55bb9bfec20a5e516d589726aa272 /src/qcommon/q_shared.h | |
parent | 5c520de1c5d9fe71dadea68767535ce27add2dba (diff) |
* Merged ioq3-r584
Diffstat (limited to 'src/qcommon/q_shared.h')
-rw-r--r-- | src/qcommon/q_shared.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h index a55689e7..518eab41 100644 --- a/src/qcommon/q_shared.h +++ b/src/qcommon/q_shared.h @@ -102,6 +102,12 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA //============================================================= +#ifdef Q3_VM +typedef int intptr_t; +#else +#include <inttypes.h> +#endif + typedef unsigned char byte; typedef enum {qfalse, qtrue} qboolean; |