diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-11-10 21:42:25 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-11-10 21:42:25 +0300 |
commit | 0da7c26b10d362ffbb7b9d44d7add043f2d7192f (patch) | |
tree | 1aa0b0e3c3bb0f557488bdd8e4d35d74b2d9c736 /src/adlmidi_private.hpp | |
parent | 472cd580a2646d53a86c5bbdce890a3798754200 (diff) | |
download | libADLMIDI-0da7c26b10d362ffbb7b9d44d7add043f2d7192f.tar.gz libADLMIDI-0da7c26b10d362ffbb7b9d44d7add043f2d7192f.tar.bz2 libADLMIDI-0da7c26b10d362ffbb7b9d44d7add043f2d7192f.zip |
Incomplete attempt to provide support for OpenWattcom compiler
Yeah, I see it lacks A LOT OF things: std::vector lacks .data() member, std::map lacks .count() member, there is no any std::stringstream implementations, etc.
SOLUTION: Try to use STLPort to provide missing STL support for this compiler
Diffstat (limited to 'src/adlmidi_private.hpp')
-rw-r--r-- | src/adlmidi_private.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/adlmidi_private.hpp b/src/adlmidi_private.hpp index 27cfdb0..c860a88 100644 --- a/src/adlmidi_private.hpp +++ b/src/adlmidi_private.hpp @@ -77,6 +77,7 @@ typedef __int32 ssize_t; #include <deque> // deque #include <cmath> // exp, log, ceil #include <stdio.h> +#include <stdlib.h> #include <limits> // numeric_limit #ifndef _WIN32 |