From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7847 invoked by alias); 5 Mar 2012 17:39:08 -0000 Received: (qmail 7746 invoked by uid 22791); 5 Mar 2012 17:39:07 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from e06smtp17.uk.ibm.com (HELO e06smtp17.uk.ibm.com) (195.75.94.113) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 05 Mar 2012 17:38:53 +0000 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 5 Mar 2012 17:38:51 -0000 Received: from d06nrmr1307.portsmouth.uk.ibm.com (9.149.38.129) by e06smtp17.uk.ibm.com (192.168.101.147) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Mon, 5 Mar 2012 17:38:49 -0000 Received: from d06av08.portsmouth.uk.ibm.com (d06av08.portsmouth.uk.ibm.com [9.149.37.249]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q25Hcn8q2514962 for ; Mon, 5 Mar 2012 17:38:49 GMT Received: from d06av08.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q25Hcnw6016640 for ; Mon, 5 Mar 2012 10:38:49 -0700 Received: from BR87Z6LW (dyn-9-152-212-27.boeblingen.de.ibm.com [9.152.212.27]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id q25Hcm9H016629 for ; Mon, 5 Mar 2012 10:38:48 -0700 From: Andreas Arnez To: gdb-patches@sourceware.org Subject: [PATCH] s390-nat.c: Fix missing prototypes Date: Mon, 05 Mar 2012 17:39:00 -0000 Message-ID: <8762ejrlqv.fsf@vnet.ibm.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii x-cbid: 12030517-0542-0000-0000-0000012D592F Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-03/txt/msg00156.txt.bz2 Fix missing prototypes for supply_gregset and friends in "s390-nat.c". Tested on s390x-ibm-linux with no regressions, fixes a -Wmissing-prototypes build failure. gdb/ 2012-03-05 Andreas Arnez * s390-nat.c: Include "gregset.h". --- diff --git a/gdb/s390-nat.c b/gdb/s390-nat.c index 2755e58..aff967e 100644 --- a/gdb/s390-nat.c +++ b/gdb/s390-nat.c @@ -37,6 +37,9 @@ #include #include +/* Prototypes for supply_gregset etc. */ +#include "gregset.h" + #ifndef HWCAP_S390_HIGH_GPRS #define HWCAP_S390_HIGH_GPRS 512 #endif