From 127add4bf7c18f1fb7cc7da889bcc88a742dde57 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Thu, 8 Jul 2021 07:06:20 -0600 Subject: [PATCH] include stddef for size_t type for ptr --- wolfssl/wolfcrypt/types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index f887e56c7..54cfce686 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -205,6 +205,7 @@ decouple library dependencies with standard string, memory and so on. #include typedef uintptr_t wc_ptr_t; #else /* fallback to architecture size_t for pointer size */ + #include /* included for getting size_t type */ typedef size_t wc_ptr_t; #endif