File tree Expand file tree Collapse file tree 13 files changed +65
-0
lines changed Expand file tree Collapse file tree 13 files changed +65
-0
lines changed Original file line number Diff line number Diff line change
1
+ # $NetBSD: Makefile,v 1.3 1995/03/21 12:04:53 cgd Exp $
1
2
# @(#)Makefile 8.1 (Berkeley) 6/12/93
2
3
3
4
PROG = adventure
Original file line number Diff line number Diff line change
1
+ .\" $NetBSD: adventure.6,v 1.2 1995/03/21 12:04:57 cgd Exp $
2
+ .\"
1
3
.\" Copyright (c) 1991, 1993
2
4
.\" The Regents of the University of California. All rights reserved.
3
5
.\"
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: crc.c,v 1.2 1995/03/21 12:04:59 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1993
3
5
* The Regents of the University of California. All rights reserved.
35
37
*/
36
38
37
39
#ifndef lint
40
+ #if 0
38
41
static char sccsid [] = "@(#)crc.c 8.1 (Berkeley) 5/31/93" ;
39
42
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
40
46
#endif /* not lint */
41
47
42
48
typedef unsigned long u_long ;
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: done.c,v 1.2 1995/03/21 12:05:01 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
/* Re-coding of advent in C: termination routines */
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: hdr.h,v 1.2 1995/03/21 12:05:02 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: init.c,v 1.2 1995/03/21 12:05:04 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
/* Re-coding of advent in C: data initialization */
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: io.c,v 1.2 1995/03/21 12:05:05 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
/* Re-coding of advent in C: file i/o and user i/o */
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
@@ -43,7 +45,11 @@ static char copyright[] =
43
45
#endif /* not lint */
44
46
45
47
#ifndef lint
48
+ #if 0
46
49
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
47
53
#endif /* not lint */
48
54
49
55
/* Re-coding of advent in C: main program */
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: save.c,v 1.2 1995/03/21 12:05:08 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
#include <stdio.h>
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: setup.c,v 1.2 1995/03/21 12:05:10 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
@@ -41,7 +43,11 @@ static char copyright[] =
41
43
#endif /* not lint */
42
44
43
45
#ifndef lint
46
+ #if 0
44
47
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
45
51
#endif /* not lint */
46
52
47
53
/*
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: subr.c,v 1.2 1995/03/21 12:05:11 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
/* Re-coding of advent in C: subroutines from main */
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: vocab.c,v 1.2 1995/03/21 12:05:13 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
/* Re-coding of advent in C: data structure routines */
Original file line number Diff line number Diff line change
1
+ /* $NetBSD: wizard.c,v 1.2 1995/03/21 12:05:15 cgd Exp $ */
2
+
1
3
/*-
2
4
* Copyright (c) 1991, 1993
3
5
* The Regents of the University of California. All rights reserved.
37
39
*/
38
40
39
41
#ifndef lint
42
+ #if 0
40
43
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
41
47
#endif /* not lint */
42
48
43
49
/* Re-coding of advent in C: privileged operations */
You can’t perform that action at this time.
0 commit comments