Skip to content

Commit 43b9525

Browse files
cgdcgd
authored andcommitted
clean up RCS ids
1 parent 82cadfc commit 43b9525

File tree

13 files changed

+65
-0
lines changed

13 files changed

+65
-0
lines changed

games/adventure/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# $NetBSD: Makefile,v 1.3 1995/03/21 12:04:53 cgd Exp $
12
# @(#)Makefile 8.1 (Berkeley) 6/12/93
23

34
PROG= adventure

games/adventure/adventure.6

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.\" $NetBSD: adventure.6,v 1.2 1995/03/21 12:04:57 cgd Exp $
2+
.\"
13
.\" Copyright (c) 1991, 1993
24
.\" The Regents of the University of California. All rights reserved.
35
.\"

games/adventure/crc.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: crc.c,v 1.2 1995/03/21 12:04:59 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1993
35
* The Regents of the University of California. All rights reserved.
@@ -35,8 +37,12 @@
3537
*/
3638

3739
#ifndef lint
40+
#if 0
3841
static char sccsid[] = "@(#)crc.c 8.1 (Berkeley) 5/31/93";
3942
static char ORIGINAL_sccsid[] = "@(#)crc.c 5.2 (Berkeley) 4/4/91";
43+
#else
44+
static char rcsid[] = "$NetBSD: crc.c,v 1.2 1995/03/21 12:04:59 cgd Exp $";
45+
#endif
4046
#endif /* not lint */
4147

4248
typedef unsigned long u_long;

games/adventure/done.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: done.c,v 1.2 1995/03/21 12:05:01 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)done.c 8.1 (Berkeley) 5/31/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: done.c,v 1.2 1995/03/21 12:05:01 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
/* Re-coding of advent in C: termination routines */

games/adventure/hdr.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: hdr.h,v 1.2 1995/03/21 12:05:02 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.

games/adventure/init.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: init.c,v 1.2 1995/03/21 12:05:04 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: init.c,v 1.2 1995/03/21 12:05:04 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
/* Re-coding of advent in C: data initialization */

games/adventure/io.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: io.c,v 1.2 1995/03/21 12:05:05 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: io.c,v 1.2 1995/03/21 12:05:05 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
/* Re-coding of advent in C: file i/o and user i/o */

games/adventure/main.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -43,7 +45,11 @@ static char copyright[] =
4345
#endif /* not lint */
4446

4547
#ifndef lint
48+
#if 0
4649
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93";
50+
#else
51+
static char rcsid[] = "$NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $";
52+
#endif
4753
#endif /* not lint */
4854

4955
/* Re-coding of advent in C: main program */

games/adventure/save.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: save.c,v 1.2 1995/03/21 12:05:08 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)save.c 8.1 (Berkeley) 5/31/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: save.c,v 1.2 1995/03/21 12:05:08 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
#include <stdio.h>

games/adventure/setup.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: setup.c,v 1.2 1995/03/21 12:05:10 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -41,7 +43,11 @@ static char copyright[] =
4143
#endif /* not lint */
4244

4345
#ifndef lint
46+
#if 0
4447
static char sccsid[] = "@(#)setup.c 8.1 (Berkeley) 5/31/93";
48+
#else
49+
static char rcsid[] = "$NetBSD: setup.c,v 1.2 1995/03/21 12:05:10 cgd Exp $";
50+
#endif
4551
#endif /* not lint */
4652

4753
/*

games/adventure/subr.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: subr.c,v 1.2 1995/03/21 12:05:11 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 5/31/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: subr.c,v 1.2 1995/03/21 12:05:11 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
/* Re-coding of advent in C: subroutines from main */

games/adventure/vocab.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: vocab.c,v 1.2 1995/03/21 12:05:13 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)vocab.c 8.1 (Berkeley) 5/31/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: vocab.c,v 1.2 1995/03/21 12:05:13 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
/* Re-coding of advent in C: data structure routines */

games/adventure/wizard.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $NetBSD: wizard.c,v 1.2 1995/03/21 12:05:15 cgd Exp $ */
2+
13
/*-
24
* Copyright (c) 1991, 1993
35
* The Regents of the University of California. All rights reserved.
@@ -37,7 +39,11 @@
3739
*/
3840

3941
#ifndef lint
42+
#if 0
4043
static char sccsid[] = "@(#)wizard.c 8.1 (Berkeley) 6/2/93";
44+
#else
45+
static char rcsid[] = "$NetBSD: wizard.c,v 1.2 1995/03/21 12:05:15 cgd Exp $";
46+
#endif
4147
#endif /* not lint */
4248

4349
/* Re-coding of advent in C: privileged operations */

0 commit comments

Comments
 (0)