From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19997 invoked by alias); 10 Jun 2002 15:18:31 -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 19945 invoked from network); 10 Jun 2002 15:18:28 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 10 Jun 2002 15:18:28 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 2D45B3EB0; Mon, 10 Jun 2002 11:18:29 -0400 (EDT) Message-ID: <3D04C345.3040502@cygnus.com> Date: Mon, 10 Jun 2002 08:18:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0rc3) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Andrew Volkov Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/RFA]: Fix duplicated define of _initialize_ser_e7000pc References: <2E74F312D6980D459F3A05492BA40F8DEFC92E@clue.transas.com> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-06/txt/msg00161.txt.bz2 > -void > -_initialize_ser_e7000pc (void) > -{ > - serial_add_interface (&e7000pc_ops); > -} > -#else > +#endif /*_WIN32 or __GO32__*/ > > void > _initialize_ser_e7000pc (void) > { > - > +#if defined __GO32__ || defined _WIN32 > + serial_add_interface (&e7000pc_ops); > +#endif > } > -#endif > > Hmm, yes! Thanks. Andrew