Revert vendor identifiers, and #if 0 what is #if 0/#else for OpenBSD.

Add __FBSDID() properly.

Requested by:	bde, mike
This commit is contained in:
Juli Mallett 2002-05-03 14:48:21 +00:00
parent af2c59f62e
commit 90432ef88d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95982
6 changed files with 52 additions and 13 deletions

View File

@ -37,9 +37,17 @@
* SUCH DAMAGE.
*/
#ifndef lint
#if 0
static char sccsid[] = "@(#)eval.c 8.2 (Berkeley) 4/27/95";
#else
#if 0
static char rcsid[] = "$OpenBSD: eval.c,v 1.44 2002/04/26 16:15:16 espie Exp $";
#endif
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__SCCSID("@(#)eval.c 8.2 (Berkeley) 4/27/95");
__RCSID_SOURCE("$OpenBSD: eval.c,v 1.44 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
/*

View File

@ -37,9 +37,17 @@
* SUCH DAMAGE.
*/
#ifndef lint
#if 0
static char sccsid[] = "@(#)expr.c 8.2 (Berkeley) 4/29/95";
#else
#if 0
static char rcsid[] = "$OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $";
#endif
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__SCCSID("@(#)expr.c 8.2 (Berkeley) 4/29/95");
__RCSID_SOURCE("$OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>

View File

@ -36,9 +36,13 @@
* SUCH DAMAGE.
*/
#if 0
#ifndef lint
static char sccsid[] = "@(#)look.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
__SCCSID("@(#)look.c 8.1 (Berkeley) 6/6/93");
__RCSID_SOURCE("$OpenBSD: look.c,v 1.10 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
/*

View File

@ -37,11 +37,23 @@
* SUCH DAMAGE.
*/
#ifndef lint
static char copyright[] =
"@(#) Copyright (c) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
#else
#if 0
static char rcsid[] = "$OpenBSD: main.c,v 1.53 2002/04/26 16:15:16 espie Exp $";
#endif
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n");
__SCCSID("@(#)main.c 8.1 (Berkeley) 6/6/93");
__RCSID_SOURCE("$OpenBSD: main.c,v 1.53 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
/*

View File

@ -37,9 +37,17 @@
* SUCH DAMAGE.
*/
#ifndef lint
#if 0
static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93";
#else
#if 0
static char rcsid[] = "$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $";
#endif
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__SCCSID("@(#)misc.c 8.1 (Berkeley) 6/6/93");
__RCSID_SOURCE("$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>

View File

@ -25,7 +25,6 @@
*/
#include <sys/cdefs.h>
__RCSID_SOURCE("$OpenBSD: trace.c,v 1.6 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>