From 0184752a9f1596cf6f624ada8e0ab0195057c1b5 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 13 Oct 2021 05:16:52 +0100 Subject: [PATCH] Add missing include files for simd. --- simd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/simd.c b/simd.c index e550369..c7e875f 100644 --- a/simd.c +++ b/simd.c @@ -16,6 +16,9 @@ * License along with this library; if not, see . */ +#include +#include + #include "library.h" #include "simd.h" @@ -209,4 +212,4 @@ int have_arm_crypto(void) return getauxval(AT_HWCAP2) & HWCAP2_AES; #endif } -#endif \ No newline at end of file +#endif