blob: f7e9bfbab9b174896dfa805bc867d2b5e8f11910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- src/calc.yy
+++ src/calc.yy
@@ -8,6 +8,7 @@
#include <cmath>
#include <cctype>
+#include <cstring>
#include <vector>
#include <sstream>
--- src/tinyxml/tinyxml.h
+++ src/tinyxml/tinyxml.h
@@ -28,6 +28,8 @@
#include <string>
#include <stdio.h>
#include <assert.h>
+#include <cstring>
+#include <cstdlib>
class TiXmlDocument;
class TiXmlElement;
--- src/tinyxml/tinyxmlparser.cpp
+++ src/tinyxml/tinyxmlparser.cpp
@@ -24,6 +24,7 @@
#include "tinyxml.h"
#include <ctype.h>
+#include <cstring>
const char* TiXmlBase::SkipWhiteSpace( const char* p )
{
|