From c0619d3015813129de642da3d2ffe7c5da7d9649 Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 6 Mar 2006 21:29:24 +0000 Subject: [PATCH] Work on non-win32 git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2063 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/common/common.c b/engine/common/common.c index 598b80d55..e72af71f2 100644 --- a/engine/common/common.c +++ b/engine/common/common.c @@ -3066,7 +3066,7 @@ int build_number( void ) } - +#ifdef _WIN32 int VARGS linuxlike_snprintf(char *buffer, int size, const char *format, ...) { #undef _vsnprintf @@ -3101,3 +3101,4 @@ int VARGS linuxlike_vsnprintf(char *buffer, int size, const char *format, va_lis return ret; } +#endif