From 641af487ea7910ab0a5012a526fec4d66d874207 Mon Sep 17 00:00:00 2001 From: Sean Parkinson Date: Thu, 15 Feb 2018 08:23:49 +1000 Subject: [PATCH] Changed missed MP_API change --- wolfssl/wolfcrypt/sp_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfssl/wolfcrypt/sp_int.h b/wolfssl/wolfcrypt/sp_int.h index 663ee69c3..6bdc62d32 100644 --- a/wolfssl/wolfcrypt/sp_int.h +++ b/wolfssl/wolfcrypt/sp_int.h @@ -96,8 +96,8 @@ typedef struct sp_int { MP_API int sp_init(sp_int* a); -WOLFSSL_API int sp_init_multi(sp_int* a, sp_int* b, sp_int* c, sp_int* d, - sp_int* e, sp_int* f); +MP_API int sp_init_multi(sp_int* a, sp_int* b, sp_int* c, sp_int* d, + sp_int* e, sp_int* f); MP_API void sp_clear(sp_int* a); MP_API int sp_unsigned_bin_size(sp_int* a); MP_API int sp_read_unsigned_bin(sp_int* a, const byte* in, word32 inSz);