summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-06-25 00:20:49 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-06-25 00:20:49 +0000
commit8e878a0310eae754021dbd73ca928eaf7cf6a65c (patch)
tree85f35fe64386fc1f5eb60327eb5c614a04d1adae /games
parentb4d1edeb37a573694fb661e8da9631ce60473a8d (diff)
Diffstat (limited to 'games')
-rw-r--r--games/Makefile2
-rw-r--r--games/adventure/adventure.62
-rw-r--r--games/adventure/crc.c2
-rw-r--r--games/adventure/done.c2
-rw-r--r--games/adventure/hdr.h2
-rw-r--r--games/adventure/init.c2
-rw-r--r--games/adventure/io.c2
-rw-r--r--games/adventure/main.c2
-rw-r--r--games/adventure/save.c2
-rw-r--r--games/adventure/setup.c2
-rw-r--r--games/adventure/subr.c2
-rw-r--r--games/adventure/vocab.c2
-rw-r--r--games/adventure/wizard.c2
-rw-r--r--games/atc/atc.62
-rw-r--r--games/battlestar/com6.c2
-rw-r--r--games/bs/Makefile2
-rw-r--r--games/factor/factor.62
-rw-r--r--games/fortune/datfiles/fortunes2
-rw-r--r--games/fortune/datfiles/fortunes-o.real2
-rw-r--r--games/fortune/datfiles/fortunes22
-rw-r--r--games/fortune/datfiles/fortunes2-o2
-rw-r--r--games/fortune/fortune/fortune.62
-rw-r--r--games/grdc/Makefile2
-rw-r--r--games/hack/hack.version.c2
-rw-r--r--games/mille/mille.62
-rw-r--r--games/mille/mille.c2
-rw-r--r--games/phantasia/phantasia.62
-rw-r--r--games/piano/piano.c2
-rw-r--r--games/sail/sail.62
-rw-r--r--games/wargames/Makefile2
-rw-r--r--games/wargames/wargames.62
31 files changed, 31 insertions, 31 deletions
diff --git a/games/Makefile b/games/Makefile
index 02b1a550de56..ee553834911e 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.2 (Berkeley) 3/31/94
-# $FreeBSD$
+# $FreeBSD: src/games/Makefile,v 1.15.2.1 1999/08/29 14:22:50 peter Exp $
# XXX missing: chess ching monop [copyright]
SUBDIR= adventure \
diff --git a/games/adventure/adventure.6 b/games/adventure/adventure.6
index 501a3e11bc5e..d6f734e0301d 100644
--- a/games/adventure/adventure.6
+++ b/games/adventure/adventure.6
@@ -35,7 +35,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)adventure.6 8.1 (Berkeley) 5/31/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/adventure/adventure.6,v 1.1.1.1.10.1 2000/06/12 13:24:01 asmodai Exp $
.\"
.Dd May 31, 1993
.Dt ADVENTURE 6
diff --git a/games/adventure/crc.c b/games/adventure/crc.c
index 2aaef19b42e6..51edd20388d5 100644
--- a/games/adventure/crc.c
+++ b/games/adventure/crc.c
@@ -40,7 +40,7 @@ static char sccsid[] = "@(#)crc.c 8.1 (Berkeley) 5/31/93";
static char ORIGINAL_sccsid[] = "@(#)crc.c 5.2 (Berkeley) 4/4/91";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/crc.c,v 1.1.1.1.10.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/games/adventure/done.c b/games/adventure/done.c
index 3dd013a30190..339ee76f77ba 100644
--- a/games/adventure/done.c
+++ b/games/adventure/done.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)done.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/done.c,v 1.2.4.1 2000/06/12 13:19:02 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: termination routines */
diff --git a/games/adventure/hdr.h b/games/adventure/hdr.h
index d3b115447676..64fb9e316773 100644
--- a/games/adventure/hdr.h
+++ b/games/adventure/hdr.h
@@ -50,7 +50,7 @@
* The data file distributed with the fortran source is assumed to be called
* "glorkz" in the directory where the program is first run.
*
- * $FreeBSD$
+ * $FreeBSD: src/games/adventure/hdr.h,v 1.3.2.1 2000/06/12 13:24:01 asmodai Exp $
*/
/* hdr.h: included by c advent files */
diff --git a/games/adventure/init.c b/games/adventure/init.c
index a6307341b1c1..3d64ed3a9f40 100644
--- a/games/adventure/init.c
+++ b/games/adventure/init.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/init.c,v 1.4.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: data initialization */
diff --git a/games/adventure/io.c b/games/adventure/io.c
index 12bf41c2dbf3..62b2e0cfbb43 100644
--- a/games/adventure/io.c
+++ b/games/adventure/io.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/io.c,v 1.3.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: file i/o and user i/o */
diff --git a/games/adventure/main.c b/games/adventure/main.c
index dd15f173cffa..bda85cc615a3 100644
--- a/games/adventure/main.c
+++ b/games/adventure/main.c
@@ -47,7 +47,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/main.c,v 1.4.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: main program */
diff --git a/games/adventure/save.c b/games/adventure/save.c
index 6a921935f21e..153a6685ca68 100644
--- a/games/adventure/save.c
+++ b/games/adventure/save.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)save.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/save.c,v 1.5.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
#include <stdio.h>
diff --git a/games/adventure/setup.c b/games/adventure/setup.c
index bb1764cd2e40..a363e8f437e8 100644
--- a/games/adventure/setup.c
+++ b/games/adventure/setup.c
@@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)setup.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/setup.c,v 1.4.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/*
diff --git a/games/adventure/subr.c b/games/adventure/subr.c
index f8ba0b273e3d..0c1c5de3d66f 100644
--- a/games/adventure/subr.c
+++ b/games/adventure/subr.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/subr.c,v 1.2.4.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: subroutines from main */
diff --git a/games/adventure/vocab.c b/games/adventure/vocab.c
index 318de184596e..ac683498876d 100644
--- a/games/adventure/vocab.c
+++ b/games/adventure/vocab.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)vocab.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/vocab.c,v 1.4.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: data structure routines */
diff --git a/games/adventure/wizard.c b/games/adventure/wizard.c
index b8b8b6bfd0b9..e74af5289f4f 100644
--- a/games/adventure/wizard.c
+++ b/games/adventure/wizard.c
@@ -41,7 +41,7 @@
static char sccsid[] = "@(#)wizard.c 8.1 (Berkeley) 6/2/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/adventure/wizard.c,v 1.5.2.1 2000/06/12 13:24:01 asmodai Exp $";
#endif /* not lint */
/* Re-coding of advent in C: privileged operations */
diff --git a/games/atc/atc.6 b/games/atc/atc.6
index de165d2fa02f..2845c86e13d9 100644
--- a/games/atc/atc.6
+++ b/games/atc/atc.6
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)atc.6 8.1 (Berkeley) 5/31/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/atc/atc.6,v 1.3.2.1 1999/09/20 09:49:04 phantom Exp $
.\"
. \" XP - exdented paragraph
.de XP
diff --git a/games/battlestar/com6.c b/games/battlestar/com6.c
index 8780a1122550..78140b2074d9 100644
--- a/games/battlestar/com6.c
+++ b/games/battlestar/com6.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/games/battlestar/com6.c,v 1.6.2.1 1999/11/25 15:59:08 joerg Exp $
*/
#ifndef lint
diff --git a/games/bs/Makefile b/games/bs/Makefile
index c0905c94cd0f..c7c239e6e0c1 100644
--- a/games/bs/Makefile
+++ b/games/bs/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/games/bs/Makefile,v 1.4.2.1 1999/08/29 14:22:52 peter Exp $
PROG= bs
MAN6= bs.6
diff --git a/games/factor/factor.6 b/games/factor/factor.6
index 576e9528b1c2..85efd811bbb4 100644
--- a/games/factor/factor.6
+++ b/games/factor/factor.6
@@ -34,7 +34,7 @@
.\"
.\" @(#)factor.6 8.1 (Berkeley) 5/31/93
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/factor/factor.6,v 1.4.2.1 1999/08/29 14:22:53 peter Exp $
.\"
.\" By: Landon Curt Noll chongo@toad.com, ...!{sun,tolsoft}!hoptoad!chongo
.\"
diff --git a/games/fortune/datfiles/fortunes b/games/fortune/datfiles/fortunes
index 5419a8df11f6..dde9f87fe858 100644
--- a/games/fortune/datfiles/fortunes
+++ b/games/fortune/datfiles/fortunes
@@ -1,5 +1,5 @@
This fortune brought to you by:
-$FreeBSD$
+$FreeBSD: src/games/fortune/datfiles/fortunes,v 1.12.2.3 1999/11/27 07:34:25 wes Exp $
%
!07/11 PDP a ni deppart m'I !pleH
%
diff --git a/games/fortune/datfiles/fortunes-o.real b/games/fortune/datfiles/fortunes-o.real
index 041e7e68d36e..0c3959756d9f 100644
--- a/games/fortune/datfiles/fortunes-o.real
+++ b/games/fortune/datfiles/fortunes-o.real
@@ -1,4 +1,4 @@
-%% $FreeBSD$
+%% $FreeBSD: src/games/fortune/datfiles/fortunes-o.real,v 1.3.2.1 1999/11/27 07:34:27 wes Exp $
71:
69 with two fingers up your ass.
-- George Carlin
diff --git a/games/fortune/datfiles/fortunes2 b/games/fortune/datfiles/fortunes2
index 39c9759d3d2d..7ff9bb40f5e9 100644
--- a/games/fortune/datfiles/fortunes2
+++ b/games/fortune/datfiles/fortunes2
@@ -1,4 +1,4 @@
-%% $FreeBSD$
+%% $FreeBSD: src/games/fortune/datfiles/fortunes2,v 1.9.2.4 1999/11/27 07:34:27 wes Exp $
=======================================================================
|| ||
|| The FORTUNE-COOKIE program is soon to be a Major Motion Picture! ||
diff --git a/games/fortune/datfiles/fortunes2-o b/games/fortune/datfiles/fortunes2-o
index 29fdec7c5308..716d497dbcf0 100644
--- a/games/fortune/datfiles/fortunes2-o
+++ b/games/fortune/datfiles/fortunes2-o
@@ -1,5 +1,5 @@
This fortune brought to you by:
-$FreeBSD$
+$FreeBSD: src/games/fortune/datfiles/fortunes2-o,v 1.2.2.3 1999/11/27 07:34:34 wes Exp $
%
PLAYGIRL, Inc.
Philadelphia, Pa. 19369
diff --git a/games/fortune/fortune/fortune.6 b/games/fortune/fortune/fortune.6
index 502c0fd3ce19..faf9d48a9aeb 100644
--- a/games/fortune/fortune/fortune.6
+++ b/games/fortune/fortune/fortune.6
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)fortune.6 8.3 (Berkeley) 4/19/94
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/fortune/fortune/fortune.6,v 1.5.2.4 1999/12/07 02:50:31 chris Exp $
.\"
.Dd April 19, 1994
.Dt FORTUNE 6
diff --git a/games/grdc/Makefile b/games/grdc/Makefile
index dd22a236219c..7b3de4de662d 100644
--- a/games/grdc/Makefile
+++ b/games/grdc/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/games/grdc/Makefile,v 1.3.2.1 1999/08/29 14:22:55 peter Exp $
PROG= grdc
MAN6= grdc.6
diff --git a/games/hack/hack.version.c b/games/hack/hack.version.c
index 0fe78854972b..084795618e00 100644
--- a/games/hack/hack.version.c
+++ b/games/hack/hack.version.c
@@ -1,6 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.version.c - version 1.0.3 */
-/* $FreeBSD$ */
+/* $FreeBSD: src/games/hack/hack.version.c,v 1.2.2.1 1999/08/29 14:22:56 peter Exp $ */
#include "date.h"
diff --git a/games/mille/mille.6 b/games/mille/mille.6
index 5d05e7ae4a04..b19b373263dc 100644
--- a/games/mille/mille.6
+++ b/games/mille/mille.6
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mille.6 8.2 (Berkeley) 12/30/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/mille/mille.6,v 1.3.2.1 1999/08/29 14:22:58 peter Exp $
.\"
.TH MILLE 6 "December 30, 1993"
.UC 4
diff --git a/games/mille/mille.c b/games/mille/mille.c
index b2c5c156958d..e3194daca76f 100644
--- a/games/mille/mille.c
+++ b/games/mille/mille.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)mille.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/mille/mille.c,v 1.5.2.1 1999/08/29 14:22:58 peter Exp $";
#endif /* not lint */
# include "mille.h"
diff --git a/games/phantasia/phantasia.6 b/games/phantasia/phantasia.6
index ab0733c994e4..8bed3dbd724c 100644
--- a/games/phantasia/phantasia.6
+++ b/games/phantasia/phantasia.6
@@ -1,4 +1,4 @@
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/phantasia/phantasia.6,v 1.5.2.1 1999/08/29 14:22:59 peter Exp $
.\"
.de sh
.br
diff --git a/games/piano/piano.c b/games/piano/piano.c
index 555ceadc4b7c..e943bf3c9f7b 100644
--- a/games/piano/piano.c
+++ b/games/piano/piano.c
@@ -1,7 +1,7 @@
/*
* piano.c - a piano emulator
*/
-static char rcsid[] = "$FreeBSD$";
+static char rcsid[] = "$FreeBSD: src/games/piano/piano.c,v 1.5.2.1 1999/08/29 14:23:00 peter Exp $";
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/games/sail/sail.6 b/games/sail/sail.6
index 0455e06b08f3..8599cc4fcb11 100644
--- a/games/sail/sail.6
+++ b/games/sail/sail.6
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)sail.6 8.2 (Berkeley) 12/30/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/sail/sail.6,v 1.4.2.1 1999/08/29 14:23:02 peter Exp $
.\"
.TH SAIL 6 "December 30, 1993"
.UC 4
diff --git a/games/wargames/Makefile b/games/wargames/Makefile
index fcc2e41395a1..0fa8377438a4 100644
--- a/games/wargames/Makefile
+++ b/games/wargames/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
-# $FreeBSD$
+# $FreeBSD: src/games/wargames/Makefile,v 1.3.2.3 2000/02/16 17:29:20 jkh Exp $
MAN6= wargames.6
diff --git a/games/wargames/wargames.6 b/games/wargames/wargames.6
index 2070f559a7bf..e4fb09290e73 100644
--- a/games/wargames/wargames.6
+++ b/games/wargames/wargames.6
@@ -26,7 +26,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/wargames/wargames.6,v 1.1.2.1 2000/02/12 23:52:25 billf Exp $
.\"
.Dd February 22, 1998
.Dt WARGAMES 6