Add missing include files for simd.

This commit is contained in:
2021-10-13 05:16:52 +01:00
parent 02801c919a
commit 0184752a9f

5
simd.c
View File

@@ -16,6 +16,9 @@
* License along with this library; if not, see <http://www.gnu.org/licenses/>. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/ */
#include <stddef.h>
#include <stdint.h>
#include "library.h" #include "library.h"
#include "simd.h" #include "simd.h"
@@ -209,4 +212,4 @@ int have_arm_crypto(void)
return getauxval(AT_HWCAP2) & HWCAP2_AES; return getauxval(AT_HWCAP2) & HWCAP2_AES;
#endif #endif
} }
#endif #endif