1From 927cd88cad7bea94c2eebecc18f7881f0defaccb Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 26 Jan 2023 23:36:29 -0800
4Subject: [PATCH] include missing <cstdint>
5
6gcc 13 moved some includes around and as a result <cstdint>
7is no longer transitively included [1]. Explicitly include
8it for uint{32,64}_t.
9
10[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13
14Upstream: https://github.com/Drive-Trust-Alliance/sedutil/pull/425
15Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
16---
17 Common/DtaOptions.h | 1 +
18 1 file changed, 1 insertion(+)
19
20diff --git a/Common/DtaOptions.h b/Common/DtaOptions.h
21index c012af1d..7530a0b7 100644
22--- a/Common/DtaOptions.h
23+++ b/Common/DtaOptions.h
24@@ -21,6 +21,7 @@ along with sedutil.  If not, see <http://www.gnu.org/licenses/>.
25 #ifndef _DTAOPTIONS_H
26 #define	_DTAOPTIONS_H
27
28+#include <cstdint>
29 /** Output modes */
30 typedef enum _sedutiloutput {
31 	sedutilNormal,
32