1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-17 10:54:14 +01:00

_snprintf defined to snprintf on linux (should it be the other way round)

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40198
This commit is contained in:
Pavol Marko 2006-05-13 18:09:58 +00:00
parent 9c3b9c4bb2
commit de5e02e6aa

View File

@ -3,6 +3,11 @@
#include "sourcehook_test.h"
#include "testevents.h"
// This should probably be done the other way round!
#ifdef __linux__
#define _snprintf snprintf
#endif
namespace
{
SourceHook::ISourceHook *g_SHPtr;