diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-06-04 21:49:05 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-06-04 21:49:05 +0800 |
commit | aa4927bf2c99882c3024925bbad3df6014ad5565 (patch) | |
tree | 56e5e4911b9e8a102b5152594915ed6f2a31c572 | |
parent | 72f5be5669b3ebe1536f22c452bd455f5f330944 (diff) | |
download | tangerine-mcl-aa4927bf2c99882c3024925bbad3df6014ad5565.tar.gz tangerine-mcl-aa4927bf2c99882c3024925bbad3df6014ad5565.tar.zst tangerine-mcl-aa4927bf2c99882c3024925bbad3df6014ad5565.zip |
change malloc.h to stdlib.h for OSX(Thanks to prprhyt)
-rw-r--r-- | include/mcl/array.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mcl/array.hpp b/include/mcl/array.hpp index 5c494c2..6e6f4c6 100644 --- a/include/mcl/array.hpp +++ b/include/mcl/array.hpp @@ -6,7 +6,7 @@ @license modified new BSD license http://opensource.org/licenses/BSD-3-Clause */ -#include <malloc.h> +#include <stdlib.h> #include <stddef.h> namespace mcl { |