From c171de9a8931259b2c7584836d267dc6ecbb6d72 Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Tue, 18 Aug 2020 16:51:05 +0100 Subject: [PATCH] Include the wait.h from the portable location Build complains about wrong header inclusion with musl, sys/wait.h ough to be instead. Co-authored-by: David Carlier --- src/test/func/memory/memory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/func/memory/memory.cc b/src/test/func/memory/memory.cc index 64cdf12..e733e08 100644 --- a/src/test/func/memory/memory.cc +++ b/src/test/func/memory/memory.cc @@ -13,8 +13,8 @@ */ # include # include +# include # include -# include # define TEST_LIMITED # define KiB (1024ull) # define MiB (KiB * KiB)