diff options
Diffstat (limited to 'code/qcommon')
-rw-r--r-- | code/qcommon/qcommon.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/code/qcommon/qcommon.h b/code/qcommon/qcommon.h index 5fd3cd5..7d977ac 100644 --- a/code/qcommon/qcommon.h +++ b/code/qcommon/qcommon.h @@ -689,10 +689,12 @@ MISC // vsnprintf is ISO/IEC 9899:1999 // abstracting this to make it portable -#ifdef WIN32 +#ifdef _WIN32 #define Q_vsnprintf _vsnprintf +#define Q_snprintf _snprintf #else #define Q_vsnprintf vsnprintf +#define Q_snprintf snprintf #endif // centralizing the declarations for cl_cdkey |