blob: 8ab1e88d877f94d0bb6274a3e09ccb06557ac1e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- src/language.hpp.orig Mon May 3 18:35:49 2004
+++ src/language.hpp Wed May 12 00:50:43 2004
@@ -19,6 +19,14 @@
#include <string>
#include <vector>
+#if (__FreeBSD_version < 500029)
+#include <cwchar>
+namespace std
+{
+ typedef basic_string <wchar_t> wstring;
+}
+#endif
+
//this module controls internationalization.
struct symbol_table
|