From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23947 invoked by alias); 20 Mar 2005 20:17:06 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23813 invoked from network); 20 Mar 2005 20:17:00 -0000 Received: from unknown (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org with SMTP; 20 Mar 2005 20:17:00 -0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id j2KKGrUS013161; Sun, 20 Mar 2005 21:16:53 +0100 (CET) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.3/8.13.3) with ESMTP id j2KKGqb7031627; Sun, 20 Mar 2005 21:16:52 +0100 (CET) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.3/8.13.3/Submit) id j2KKGqUg026527; Sun, 20 Mar 2005 21:16:52 +0100 (CET) Date: Sun, 20 Mar 2005 20:17:00 -0000 Message-Id: <200503202016.j2KKGqUg026527@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: drow@false.org CC: gdb-patches@sourceware.org In-reply-to: <20050320163922.GA28124@nevyn.them.org> (message from Daniel Jacobowitz on Sun, 20 Mar 2005 11:39:22 -0500) Subject: Re: [COMMIT] Add missing prototype to cp-names.y References: <200503201626.j2KGQoZE011353@elgar.sibelius.xs4all.nl> <20050320163922.GA28124@nevyn.them.org> X-SW-Source: 2005-03/txt/msg00261.txt.bz2 Date: Sun, 20 Mar 2005 11:39:22 -0500 From: Daniel Jacobowitz On Sun, Mar 20, 2005 at 05:26:50PM +0100, Mark Kettenis wrote: > Compiling with -Werror on OpenBSD failed. Turns out that yacc doesn't > provide a prototype for yyparse, while bison does. Works for me on > systems with and without bison. Thanks! Typo though: > * cp-names.y: Add prototype for yylex. > +int yyparse (void); Oops. Sorry 'bout that. Fixed now. Mark