From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23027 invoked by alias); 7 Jan 2014 18:26:57 -0000 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 Received: (qmail 22890 invoked by uid 89); 7 Jan 2014 18:26:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 07 Jan 2014 18:26:56 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s07IQrqG015987 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 7 Jan 2014 13:26:54 -0500 Received: from barimba.redhat.com (ovpn-113-85.phx2.redhat.com [10.3.113.85]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s07IQqLt023534; Tue, 7 Jan 2014 13:26:53 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 1/3] remove PARAMS from include/cgen Date: Tue, 07 Jan 2014 18:26:00 -0000 Message-Id: <1389119202-13386-2-git-send-email-tromey@redhat.com> In-Reply-To: <1389119202-13386-1-git-send-email-tromey@redhat.com> References: <1389119202-13386-1-git-send-email-tromey@redhat.com> X-SW-Source: 2014-01/txt/msg00152.txt.bz2 This removes the remaining uses of PARAMS from include/cgen. Tested by rebuilding; a file in opcodes includes this header. 2014-01-06 Tom Tromey * bitset.h: Remove uses of PARAMS. --- include/cgen/ChangeLog | 4 ++++ include/cgen/bitset.h | 22 +++++++++++----------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/include/cgen/bitset.h b/include/cgen/bitset.h index 7a6a993..f4481c1 100644 --- a/include/cgen/bitset.h +++ b/include/cgen/bitset.h @@ -1,5 +1,5 @@ /* Header file the type CGEN_BITSET. - Copyright 2002, 2005, 2009 Free Software Foundation, Inc. + Copyright 2002, 2005, 2009, 2013 Free Software Foundation, Inc. This file is part of the GNU opcodes library. @@ -38,16 +38,16 @@ typedef struct cgen_bitset char *bits; } CGEN_BITSET; -extern CGEN_BITSET *cgen_bitset_create PARAMS ((unsigned)); -extern void cgen_bitset_init PARAMS ((CGEN_BITSET *, unsigned)); -extern void cgen_bitset_clear PARAMS ((CGEN_BITSET *)); -extern void cgen_bitset_add PARAMS ((CGEN_BITSET *, unsigned)); -extern void cgen_bitset_set PARAMS ((CGEN_BITSET *, unsigned)); -extern int cgen_bitset_compare PARAMS ((CGEN_BITSET *, CGEN_BITSET *)); -extern void cgen_bitset_union PARAMS ((CGEN_BITSET *, CGEN_BITSET *, CGEN_BITSET *)); -extern int cgen_bitset_intersect_p PARAMS ((CGEN_BITSET *, CGEN_BITSET *)); -extern int cgen_bitset_contains PARAMS ((CGEN_BITSET *, unsigned)); -extern CGEN_BITSET *cgen_bitset_copy PARAMS ((CGEN_BITSET *)); +extern CGEN_BITSET *cgen_bitset_create (unsigned); +extern void cgen_bitset_init (CGEN_BITSET *, unsigned); +extern void cgen_bitset_clear (CGEN_BITSET *); +extern void cgen_bitset_add (CGEN_BITSET *, unsigned); +extern void cgen_bitset_set (CGEN_BITSET *, unsigned); +extern int cgen_bitset_compare (CGEN_BITSET *, CGEN_BITSET *); +extern void cgen_bitset_union (CGEN_BITSET *, CGEN_BITSET *, CGEN_BITSET *); +extern int cgen_bitset_intersect_p (CGEN_BITSET *, CGEN_BITSET *); +extern int cgen_bitset_contains (CGEN_BITSET *, unsigned); +extern CGEN_BITSET *cgen_bitset_copy (CGEN_BITSET *); #ifdef __cplusplus } // extern "C" -- 1.8.1.4