From 14b6254e6e3e159cf15566e2af06c06ee3aee9a1 Mon Sep 17 00:00:00 2001 From: Andrew Burks Date: Fri, 20 Feb 2015 17:19:42 -0800 Subject: [PATCH] Fixed dependency chain issue with integer.h since one of the function prototypes uses mp_int. --- wolfcrypt/src/asn.c | 1 - wolfssl/wolfcrypt/asn.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index 13cfb6c25..1d549ed24 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -32,7 +32,6 @@ #include "dc_rtc_api.h" /* to get current time */ #endif -#include #include #include #include diff --git a/wolfssl/wolfcrypt/asn.h b/wolfssl/wolfcrypt/asn.h index cf89bf32b..98cc3ff3d 100644 --- a/wolfssl/wolfcrypt/asn.h +++ b/wolfssl/wolfcrypt/asn.h @@ -25,6 +25,7 @@ #define WOLF_CRYPT_ASN_H #include +#include #ifndef NO_RSA #include #endif