From patchwork Thu Oct 27 08:38:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ken Werner X-Patchwork-Id: 4853 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 364F823EF7 for ; Thu, 27 Oct 2011 08:38:18 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 2CA7BA18321 for ; Thu, 27 Oct 2011 08:38:18 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so3464822faa.11 for ; Thu, 27 Oct 2011 01:38:18 -0700 (PDT) Received: by 10.223.77.6 with SMTP id e6mr65155678fak.32.1319704698080; Thu, 27 Oct 2011 01:38:18 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.1.71 with SMTP id 7cs37911lak; Thu, 27 Oct 2011 01:38:17 -0700 (PDT) Received: by 10.14.0.199 with SMTP id 47mr1899915eeb.110.1319704695756; Thu, 27 Oct 2011 01:38:15 -0700 (PDT) Received: from mtagate2.uk.ibm.com (mtagate2.uk.ibm.com. [194.196.100.162]) by mx.google.com with ESMTPS id s51si1337603eef.171.2011.10.27.01.38.15 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 27 Oct 2011 01:38:15 -0700 (PDT) Received-SPF: neutral (google.com: 194.196.100.162 is neither permitted nor denied by best guess record for domain of ken.werner@linaro.org) client-ip=194.196.100.162; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.196.100.162 is neither permitted nor denied by best guess record for domain of ken.werner@linaro.org) smtp.mail=ken.werner@linaro.org Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate2.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p9R8cFGq007989 for ; Thu, 27 Oct 2011 08:38:15 GMT Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9R8cE8b2715656 for ; Thu, 27 Oct 2011 09:38:14 +0100 Received: from d06av11.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9R8cELO018318 for ; Thu, 27 Oct 2011 02:38:14 -0600 Received: from kiste.boeblingen.de.ibm.com (dyn-9-152-224-38.boeblingen.de.ibm.com [9.152.224.38]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p9R8cCbF018201; Thu, 27 Oct 2011 02:38:14 -0600 From: Ken Werner To: libunwind-devel@nongnu.org Subject: [PATCH 6/6] Add missing include directive Date: Thu, 27 Oct 2011 10:38:12 +0200 Message-Id: <1319704692-4464-7-git-send-email-ken.werner@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1319704692-4464-1-git-send-email-ken.werner@linaro.org> References: <1319704692-4464-1-git-send-email-ken.werner@linaro.org> The testcase tests/Gtest-dyn1.c uses the signal() function and should therefore include the corresponding header file. Signed-off-by: Ken Werner --- tests/Gtest-dyn1.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/Gtest-dyn1.c b/tests/Gtest-dyn1.c index fcb773d..e084813 100644 --- a/tests/Gtest-dyn1.c +++ b/tests/Gtest-dyn1.c @@ -30,7 +30,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include - +#include #include #if UNW_TARGET_ARM