summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-02-03 20:03:51 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-02-03 20:03:51 -0500
commita313f744cd619169d5425955ae5fd7de438ff23b (patch)
tree7d426bc3b5e29687ade11db83bf3b9e83e23be4d
parentf806cfd21c83cf0c013cf721ab2adae3eecdb6ad (diff)
unidasm: Fix build on gcc
-rw-r--r--src/tools/unidasm.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index 8566bc221b7..26cf1260f07 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -199,8 +199,12 @@ using util::BIT;
#include <cstdio>
#include <cstdlib>
#include <cstring>
+#include <functional>
#include <iostream>
+#include <memory>
#include <stdexcept>
+#include <string>
+#include <vector>
#ifdef _WIN32
#include <fcntl.h>