Received: from SOUTH-STATION-ANNEX.MIT.EDU by po7.MIT.EDU (5.61/4.7) id AA24574; Wed, 13 Dec 95 13:35:53 EST
Received: from halloran-eldar.lcs.mit.edu by MIT.EDU with SMTP
	id AA00314; Wed, 13 Dec 95 13:34:20 EST
Received: from freefall.FreeBSD.ORG by halloran-eldar.lcs.mit.edu; (5.65/1.1.8.2/19Aug95-0530PM)
	id AA10381; Wed, 13 Dec 1995 13:24:55 -0500
Received: (from root@localhost)
          by freefall.freebsd.org (8.7.3/8.7.3) id KAA11962
          for cvs-committers-outgoing; Wed, 13 Dec 1995 10:22:36 -0800 (PST)
Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19])
          by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id KAA11957
          for <committers@freebsd.org>; Wed, 13 Dec 1995 10:22:32 -0800 (PST)
Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id FAA30948; Thu, 14 Dec 1995 05:17:49 +1100
Date: Thu, 14 Dec 1995 05:17:49 +1100
From: Bruce Evans <bde@zeta.org.au>
Message-Id: <199512131817.FAA30948@godzilla.zeta.org.au>
To: committers@freebsd.org, mark@grondar.za
Subject: Re: A question of style...
Sender: owner-cvs-committers@freebsd.org
Precedence: bulk

>One warning that irks me slightly is the complaint about 
>#indef lint
>static char sccsid="#(@)ldflsjfdlkjsfdlkjsdflkfljsf"
>#endif /* lint */
>when -Wall complains about the unref'ed sccsid.

>What is the 'accepted norm' in shutting these up? I usually use(ed)
>#if 0/#endif, but I don't like it much. Should we be def'ing "lint"?

It should be a macro `IDDEJOUR("foo");', but until then:

static char const sccsid[] = "#(@)ldflsjfdlkjsfdlkjsdflkfljsf";

Bruce
