From: Khem Raj Date: Tue, 25 May 2021 01:26:27 +0000 (-0700) Subject: test-parse-argument: Include signal.h X-Git-Tag: v249-rc1~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=850f0008bff77690e1c9a7265e3900688f0f9825;p=thirdparty%2Fsystemd.git test-parse-argument: Include signal.h Fixes src/test/test-parse-argument.c:49:29: error: use of undeclared identifier 'SIGABRT' Signed-off-by: Khem Raj --- diff --git a/src/test/test-parse-argument.c b/src/test/test-parse-argument.c index 4081a9f25a7..5e9139af2c1 100644 --- a/src/test/test-parse-argument.c +++ b/src/test/test-parse-argument.c @@ -1,5 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ +#include + #include "parse-argument.h" #include "stdio-util.h" #include "tests.h"