blob: 91e9f8e484ba36fca2a7c60900010a8056ba16c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ab,v 1.7 2006/10/01 08:52:01 schwarz Exp $
--- common/string.cpp.orig 2006-09-17 18:06:12.000000000 +0200
+++ common/string.cpp 2006-09-17 18:27:35.000000000 +0200
@@ -18,6 +18,10 @@
#include "string.hpp"
#include "asc_ctype.hpp"
+#ifdef DECLARE_VSNPRINTF
+int vsnprintf(char *str, size_t size, const char *format, va_list ap);
+#endif
+
namespace acommon {
// reserve space for at least s+1 characters
|