From f218f76b82c3fc2ebfca0d1621e850a61c78ea6a Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 18 May 2019 13:53:40 -0700 Subject: Fix liburing.h memset() missing declaration liburing.h uses memset() but doesn't include string.h. If nothing else includes it, this causes compile errors. Add the include. Signed-off-by: Ian Gulliver --- src/liburing.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/liburing.h b/src/liburing.h index 32e7211..3df5462 100644 --- a/src/liburing.h +++ b/src/liburing.h @@ -7,6 +7,7 @@ extern "C" { #include #include +#include #include #include "compat.h" #include "io_uring.h" -- cgit