summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorNicolas 'Pixel' Noble <pixel@nobis-crew.org>2013-01-20 00:26:29 -0800
committerNicolas 'Pixel' Noble <pixel@nobis-crew.org>2013-01-20 00:26:29 -0800
commit78d9b284f1879725c071a348c0542c0ff31ab4da (patch)
treefdf53804763f4a4ad69d4358ab9930177675d9a9 /includes
parent71aba2fccba167f7c402f5f603e6f980b709b07e (diff)
Tentatively adding vsscanf to win32 compilation. Untested tho.
Diffstat (limited to 'includes')
-rw-r--r--includes/BString.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/BString.h b/includes/BString.h
index f8f9710..f472d85 100644
--- a/includes/BString.h
+++ b/includes/BString.h
@@ -12,6 +12,10 @@
#include <string>
#include <vector>
+#ifdef _WIN32
+int vsscanf(const char *, const char *, va_list);
+#endif
+
namespace Balau {
class String : private std::string {