From owner-freebsd-current Sun Jul 28 03:51:25 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA15142 for current-outgoing; Sun, 28 Jul 1996 03:51:25 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id DAA15133 for ; Sun, 28 Jul 1996 03:51:19 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id UAA15268 for current@freebsd.org; Sun, 28 Jul 1996 20:47:31 +1000 Date: Sun, 28 Jul 1996 20:47:31 +1000 From: Bruce Evans Message-Id: <199607281047.UAA15268@godzilla.zeta.org.au> To: current@freebsd.org Subject: `const char rcsid[]' vs -traditional Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Many sources no longer compile with non-ANSI compilers because they begin with const char rcsid[] = ... `const' is normally hidden for non-ANSI compilers by defining it as nothing in , but copyright and id strings are normally defined before including anything. Bruce