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.
This commit is contained in:
Hanno Becker 2019-08-23 15:23:46 +01:00
parent e8c52ff191
commit d82f60da36

View file

@ -31,6 +31,7 @@
#endif
#include <stddef.h>
#include <stdint.h>
#if defined(MBEDTLS_BIGNUM_C)
#include "bignum.h"