1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

Fixed bug when compiling on AMD64 with -m32

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4080
This commit is contained in:
David Anderson 2005-06-25 00:12:26 +00:00
parent 8fc6cdaf9d
commit 34dbc44a97

View File

@ -52,11 +52,12 @@
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#elif defined __GNUC__
# if !__GLIBC_HAVE_LONG_LONG
#include <stdint.h>
#if !__GLIBC_HAVE_LONG_LONG
typedef long long int64_t;
# endif
typedef unsigned long long uint64_t;
#endif
#endif
#ifndef __linux__
#define snprintf _snprintf