diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-02 10:57:57 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-02 10:57:57 (GMT) |
commit | 88468313289c659088be9beece59a82206153ed8 (patch) | |
tree | b26a1cd63b056d5421dc59c1e4022833b914c652 | |
parent | bc7aedbff07ac657ef60ffca5423fe2d054962ca (diff) | |
download | Doxygen-88468313289c659088be9beece59a82206153ed8.zip Doxygen-88468313289c659088be9beece59a82206153ed8.tar.gz Doxygen-88468313289c659088be9beece59a82206153ed8.tar.bz2 |
Fixed missing include for Linux
-rw-r--r-- | vhdlparser/vhdlstring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vhdlparser/vhdlstring.h b/vhdlparser/vhdlstring.h index 16e1d9a..ec13907 100644 --- a/vhdlparser/vhdlstring.h +++ b/vhdlparser/vhdlstring.h @@ -2,6 +2,7 @@ #define VHDLSTRING_H #include <stdio.h> +#include <stdlib.h> #include <string.h> /** @brief Minimal string class with std::string like behaviour that fulfills the JavaCC |