From 092c686e1bc4a64d3f876349573ca66144fa3b73 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Mon, 1 Nov 2021 12:27:31 -0600 Subject: [PATCH] tests: Fix warning in 05-sim-long_jumps.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 3c2da115b5b35 "tests: improve 05-sim-long_jumps to work better across arch/ABIs" introduced the following warning. Let's fix it. 05-sim-long_jumps.c: In function ‘main’: 05-sim-long_jumps.c:68:25: warning: implicit declaration of function ‘free’ [-Wimplicit-function-declaration] 68 | free(syscall); Acked-by: Paul Moore Signed-off-by: Tom Hromatka --- tests/05-sim-long_jumps.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/05-sim-long_jumps.c b/tests/05-sim-long_jumps.c index 24e5cf2b..f8e96340 100644 --- a/tests/05-sim-long_jumps.c +++ b/tests/05-sim-long_jumps.c @@ -23,6 +23,7 @@ #include #include #include +#include #include