Fix 1356998: compile error on IRIX
authorpabs <pabs@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Mon, 30 Jan 2006 02:51:28 +0000 (02:51 +0000)
committerpabs <pabs@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Mon, 30 Jan 2006 02:51:28 +0000 (02:51 +0000)
git-svn-id: http://svn.voria.com/code@119 1f10aa63-cdf2-0310-b900-c93c546f37ac

ETL/trunk/ETL/_stringf.h

index b701444..d266453 100644 (file)
@@ -53,11 +53,7 @@ _ETL_BEGIN_CDECLS
 #else
 
 # ifdef HAVE_VSNPRINTF // This is the secondary method
-#  if defined(__CYGWIN__)  || defined(_WIN32)
-extern int vsnprintf(char *,unsigned int,const char*,va_list)ETL_NO_THROW;
-#  else
-extern int vsnprintf(char *,int,const char*,va_list)ETL_NO_THROW;
-#  endif
+ extern int vsnprintf(char *,size_t,const char*,va_list)ETL_NO_THROW;
 # endif
 
 #endif