From d82f60da364149a067e29b1d50339ef94fd226a9 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Fri, 23 Aug 2019 15:23:46 +0100 Subject: [PATCH] Directly include stdint.h from asn1.h asn1.h uses uint8_t which is defined in stdint.h. This wasn't caught earlier by the luck that whenever asn1.h was included, another header was included earlier that did in turn include stdint.h. --- include/mbedtls/asn1.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mbedtls/asn1.h b/include/mbedtls/asn1.h index 94990fe5e..7c97d79ef 100644 --- a/include/mbedtls/asn1.h +++ b/include/mbedtls/asn1.h @@ -31,6 +31,7 @@ #endif #include +#include #if defined(MBEDTLS_BIGNUM_C) #include "bignum.h"