blob: 3af1daac9ce08b613c8650c3ba4c11b582b90af0 [file] [log] [blame]
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001From 1adde6721ead386ccee6efe48038d6944b96319a Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 24 May 2021 18:26:27 -0700
4Subject: [PATCH] test-parse-argument: Include signal.h
5
6Fixes
7src/test/test-parse-argument.c:49:29: error: use of undeclared identifier 'SIGABRT'
8
9Upstream-Status: Submitted [https://github.com/systemd/systemd/pull/19718]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 src/test/test-parse-argument.c | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/src/test/test-parse-argument.c b/src/test/test-parse-argument.c
16index 4081a9f25a..820d69f092 100644
17--- a/src/test/test-parse-argument.c
18+++ b/src/test/test-parse-argument.c
19@@ -3,6 +3,7 @@
20 #include "parse-argument.h"
21 #include "stdio-util.h"
22 #include "tests.h"
23+#include <signal.h>
24
25 static void test_parse_json_argument(void) {
26 log_info("/* %s */", __func__);
27--
282.31.1
29