diff options
Diffstat (limited to 'src/qcommon/q_shared.h')
-rw-r--r-- | src/qcommon/q_shared.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h index 518eab41..0059cdfa 100644 --- a/src/qcommon/q_shared.h +++ b/src/qcommon/q_shared.h @@ -105,7 +105,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #ifdef Q3_VM typedef int intptr_t; #else -#include <inttypes.h> +# ifndef _MSC_VER +# include <stdint.h> +# endif #endif typedef unsigned char byte; |