From fac898d75996abd7e6a8d89b82166c43f4b313ba Mon Sep 17 00:00:00 2001 From: Lutzx <58432926+Lutzx@users.noreply.github.com> Date: Mon, 8 May 2023 01:23:12 +0100 Subject: [PATCH] Add stdint headers (#1) (#2832) * Add stdint header * Add stdint header Co-authored-by: Christopher Leggett --- ZAPDTR/ZAPD/Declaration.h | 1 + ZAPDTR/ZAPD/OutputFormatter.h | 1 + 2 files changed, 2 insertions(+) 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 #include +#include // 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 #include #include +#include class OutputFormatter {