blob: 620aaabc687bf28b090f45fc8838841ee13fcf5f [file] [log] [blame]
Brad Bishop64c979e2019-11-04 13:55:29 -05001From 0b1766514f6847c7367fce07f19a750ec74c11a6 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Thu, 26 Sep 2019 16:19:34 +0800
4Subject: [PATCH] tools/btpclient.c: include signal.h
5
6Fix compile failure when configure --enable-btpclient:
7btpclient.c:2834:7: error: 'SIGINT' undeclared (first use in this function)
8
9Upstream-Status: Backport [A subset of the full fix that went upstream]
10
11Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
12---
13 tools/btpclient.c | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/tools/btpclient.c b/tools/btpclient.c
17index b217df5..aece7fe 100644
18--- a/tools/btpclient.c
19+++ b/tools/btpclient.c
20@@ -29,6 +29,7 @@
21 #include <stdlib.h>
22 #include <assert.h>
23 #include <getopt.h>
24+#include <signal.h>
25
26 #include <ell/ell.h>
27
28--
292.7.4
30