summaryrefslogtreecommitdiff
path: root/ZAPDTR
diff options
context:
space:
mode:
authorLutzx <58432926+Lutzx@users.noreply.github.com>2023-05-08 01:23:12 +0100
committerGitHub <noreply@github.com>2023-05-07 20:23:12 -0400
commitfac898d75996abd7e6a8d89b82166c43f4b313ba (patch)
tree91b589a7301789063f785b6f385bc8cd83dcd58f /ZAPDTR
parent91bd693ff6f9809f97f1b5416ef96d51ae5f0d05 (diff)
Add stdint headers (#1) (#2832)
* Add stdint header * Add stdint header Co-authored-by: Christopher Leggett <chris@leggett.dev>
Diffstat (limited to 'ZAPDTR')
-rw-r--r--ZAPDTR/ZAPD/Declaration.h1
-rw-r--r--ZAPDTR/ZAPD/OutputFormatter.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/ZAPDTR/ZAPD/Declaration.h b/ZAPDTR/ZAPD/Declaration.h
index 45d36f49e..64712d8c3 100644
--- a/ZAPDTR/ZAPD/Declaration.h
+++ b/ZAPDTR/ZAPD/Declaration.h
@@ -2,6 +2,7 @@
#include <string>
#include <vector>
+#include <cstdint>
// TODO: should we drop the `_t` suffix because of UNIX compliance?
typedef uint32_t segptr_t;
diff --git a/ZAPDTR/ZAPD/OutputFormatter.h b/ZAPDTR/ZAPD/OutputFormatter.h
index 03abfdb96..391f41027 100644
--- a/ZAPDTR/ZAPD/OutputFormatter.h
+++ b/ZAPDTR/ZAPD/OutputFormatter.h
@@ -3,6 +3,7 @@
#include <map>
#include <string>
#include <vector>
+#include <cstdint>
class OutputFormatter
{