summaryrefslogtreecommitdiff
path: root/extra/yassl/mySTL
diff options
context:
space:
mode:
authorsvoj@mysql.com <>2005-05-20 19:32:51 +0500
committersvoj@mysql.com <>2005-05-20 19:32:51 +0500
commit7c375cab5a6067689b6549462d1308bd61930bf9 (patch)
tree1872721d26eb293852ed49af00d434579d0b1784 /extra/yassl/mySTL
parent7582b3d82d4914a9237852a62f6066f555b6ea3e (diff)
downloadmariadb-git-7c375cab5a6067689b6549462d1308bd61930bf9.tar.gz
WL#2286 - Compile MySQL w/YASSL support
Portability fixes
Diffstat (limited to 'extra/yassl/mySTL')
-rw-r--r--extra/yassl/mySTL/helpers.hpp2
-rw-r--r--extra/yassl/mySTL/stdexcept.hpp2
-rw-r--r--extra/yassl/mySTL/vector.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/extra/yassl/mySTL/helpers.hpp b/extra/yassl/mySTL/helpers.hpp
index 1b62d60cd2e..10f120e914b 100644
--- a/extra/yassl/mySTL/helpers.hpp
+++ b/extra/yassl/mySTL/helpers.hpp
@@ -27,7 +27,7 @@
#ifndef mySTL_HELPERS_HPP
#define mySTL_HELPERS_HPP
-#include <cstdlib>
+#include <stdlib.h>
namespace mySTL {
diff --git a/extra/yassl/mySTL/stdexcept.hpp b/extra/yassl/mySTL/stdexcept.hpp
index 817861438a5..7b797f43c2b 100644
--- a/extra/yassl/mySTL/stdexcept.hpp
+++ b/extra/yassl/mySTL/stdexcept.hpp
@@ -28,7 +28,7 @@
#define mySTL_STDEXCEPT_HPP
-#include <cstring> // strncpy
+#include <string.h> // strncpy
namespace mySTL {
diff --git a/extra/yassl/mySTL/vector.hpp b/extra/yassl/mySTL/vector.hpp
index 7f1f99295e4..6d5a9b6c057 100644
--- a/extra/yassl/mySTL/vector.hpp
+++ b/extra/yassl/mySTL/vector.hpp
@@ -31,7 +31,7 @@
#include "helpers.hpp" // construct, destory, fill, etc.
#include "algorithm.hpp" // swap
#include <new> // ::operator new and delete, placement too
-#include <cassert> // assert
+#include <assert.h> // assert
namespace mySTL {