diff options
Diffstat (limited to 'mtxsymbol.cc')
-rw-r--r-- | mtxsymbol.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mtxsymbol.cc b/mtxsymbol.cc index c0846b8..5e521fd 100644 --- a/mtxsymbol.cc +++ b/mtxsymbol.cc @@ -18,7 +18,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <string> +#include <cstdlib> +#include <cstring> #include <vector> #include "mtx.h" @@ -76,7 +77,7 @@ list(const MtxSymbol *symbol) string quit(const MtxSymbol *symbol) { - exit(0); + std::exit(0); } MtxSymbol::MtxSymbol() |