From 6f490cf1e26f7965d09897d032acf78e03d2f323 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Wed, 21 Nov 2012 08:25:58 +0000 Subject: [PATCH] core: another attempt at properly declaring vsnprintf(). --- src/core/string.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/string.cpp b/src/core/string.cpp index a49addb1..c05bdf2c 100644 --- a/src/core/string.cpp +++ b/src/core/string.cpp @@ -28,7 +28,9 @@ namespace lol String String::Printf(char const *format, ...) { +#if defined __CELLOS_LV2__ using std::vsnprintf; +#endif String ret; va_list ap;