From 3b50cdb5f0fe3b7dcf496973647492823e926ac1 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 13 Oct 2021 02:54:08 +0100 Subject: [PATCH] Fix definition of size_t for non-Windows platforms. --- crc32_vmull.c | 1 + crc64_vmull.c | 1 + 2 files changed, 2 insertions(+) diff --git a/crc32_vmull.c b/crc32_vmull.c index fd88cd6..2f965fb 100644 --- a/crc32_vmull.c +++ b/crc32_vmull.c @@ -6,6 +6,7 @@ #include #include +#include #include "library.h" #include "crc32.h" diff --git a/crc64_vmull.c b/crc64_vmull.c index c89acdf..611f13e 100644 --- a/crc64_vmull.c +++ b/crc64_vmull.c @@ -6,6 +6,7 @@ #include #include +#include #include "library.h" #include "arm_vmull.h"