From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24900 invoked by alias); 18 Jun 2002 18:48:23 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 24783 invoked from network); 18 Jun 2002 18:48:11 -0000 Received: from unknown (HELO mail.centropolisfx.com) (64.70.30.98) by sources.redhat.com with SMTP; 18 Jun 2002 18:48:11 -0000 Received: from centropolisfx.com (jupiter.centropolisfx.com [172.20.2.83]) by mail.centropolisfx.com (8.11.3/8.11.3) with ESMTP id g5IIopv386374; Tue, 18 Jun 2002 11:50:52 -0700 (PDT) Message-ID: <3D0F810B.1E6C1A1A@centropolisfx.com> Date: Tue, 18 Jun 2002 11:48:00 -0000 From: Gokhan Kisacikoglu Reply-To: kisa@centropolisfx.com Organization: Centropolis Effects, LLC X-Accept-Language: en MIME-Version: 1.0 To: raoul s , gcc-help@gcc.gnu.org Subject: Re: extar token question References: <20020618184133.82715.qmail@web21108.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-06/txt/msg00161.txt.bz2 > #ifdef DEBUG > #define IP_DEBUG > #endif DEBUG > #ifdef DEBUG #define IP_DEBUG #endif // DEBUG * but better; #ifdef DEBUG # ifndef IP_DEBUG # define IP_DEBUG # endif #endif Otherwise you will also get a warning for defining IP_DEBUG multiple times. This is really not a gcc question.