diff options
author | svoj@mysql.com <> | 2005-05-20 19:32:51 +0500 |
---|---|---|
committer | svoj@mysql.com <> | 2005-05-20 19:32:51 +0500 |
commit | 7c375cab5a6067689b6549462d1308bd61930bf9 (patch) | |
tree | 1872721d26eb293852ed49af00d434579d0b1784 /extra/yassl/mySTL | |
parent | 7582b3d82d4914a9237852a62f6066f555b6ea3e (diff) | |
download | mariadb-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.hpp | 2 | ||||
-rw-r--r-- | extra/yassl/mySTL/stdexcept.hpp | 2 | ||||
-rw-r--r-- | extra/yassl/mySTL/vector.hpp | 2 |
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 { |