summaryrefslogtreecommitdiff
path: root/games/robots
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-07-26 21:12:35 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-07-26 21:12:35 +0000
commit7f1bf9342879a7ee2dd88e11a33ae7509eab55b0 (patch)
treea37e562f560b38e8e087a744d063186d6b1e6746 /games/robots
parenta964be6d2c35243e54bf5ce12c15339d331189cb (diff)
Diffstat (limited to 'games/robots')
-rw-r--r--games/robots/Makefile2
-rw-r--r--games/robots/extern.c2
-rw-r--r--games/robots/flush_in.c2
-rw-r--r--games/robots/init_field.c2
-rw-r--r--games/robots/main.c2
-rw-r--r--games/robots/make_level.c2
-rw-r--r--games/robots/move.c2
-rw-r--r--games/robots/move_robs.c2
-rw-r--r--games/robots/play_level.c2
-rw-r--r--games/robots/query.c2
-rw-r--r--games/robots/rnd_pos.c2
-rw-r--r--games/robots/robots.62
-rw-r--r--games/robots/score.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/games/robots/Makefile b/games/robots/Makefile
index 6ef8d9c998c9..b8a88ab28b58 100644
--- a/games/robots/Makefile
+++ b/games/robots/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
-# $FreeBSD$
+# $FreeBSD: src/games/robots/Makefile,v 1.5 1999/12/10 21:13:39 billf Exp $
PROG= robots
CFLAGS+=-DMAX_PER_UID=5
diff --git a/games/robots/extern.c b/games/robots/extern.c
index 07a8ce0bfcb8..6c94cb99a2ea 100644
--- a/games/robots/extern.c
+++ b/games/robots/extern.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/extern.c,v 1.2 1999/11/30 03:49:16 billf Exp $";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/flush_in.c b/games/robots/flush_in.c
index 894185c85975..379c5be947b3 100644
--- a/games/robots/flush_in.c
+++ b/games/robots/flush_in.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)flush_in.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/flush_in.c,v 1.2 1999/11/30 03:49:17 billf Exp $";
#endif /* not lint */
# include <curses.h>
diff --git a/games/robots/init_field.c b/games/robots/init_field.c
index 5ba646649707..3b67f2cb1b8b 100644
--- a/games/robots/init_field.c
+++ b/games/robots/init_field.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)init_field.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/init_field.c,v 1.6 1999/11/30 03:49:17 billf Exp $";
#endif /* not lint */
#include <string.h>
diff --git a/games/robots/main.c b/games/robots/main.c
index 837d608eff31..e76b06a22ec7 100644
--- a/games/robots/main.c
+++ b/games/robots/main.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/main.c,v 1.7 1999/11/30 03:49:18 billf Exp $";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/make_level.c b/games/robots/make_level.c
index 4aca2f584a05..23f1cdfa8c33 100644
--- a/games/robots/make_level.c
+++ b/games/robots/make_level.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)make_level.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/make_level.c,v 1.4 1999/11/30 03:49:18 billf Exp $";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/move.c b/games/robots/move.c
index fe18ed61567c..0198c1ffa07c 100644
--- a/games/robots/move.c
+++ b/games/robots/move.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/move.c,v 1.6 1999/11/30 03:49:18 billf Exp $";
#endif /* not lint */
#include <sys/ttydefaults.h>
diff --git a/games/robots/move_robs.c b/games/robots/move_robs.c
index 21bf0ba2150c..1ae456fcd440 100644
--- a/games/robots/move_robs.c
+++ b/games/robots/move_robs.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)move_robs.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/move_robs.c,v 1.4 1999/11/30 03:49:19 billf Exp $";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/play_level.c b/games/robots/play_level.c
index 6361d9b580a5..8bb55ef2c620 100644
--- a/games/robots/play_level.c
+++ b/games/robots/play_level.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)play_level.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/play_level.c,v 1.4 1999/11/30 03:49:20 billf Exp $";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/query.c b/games/robots/query.c
index bc6590cf6785..42e6e9ca848d 100644
--- a/games/robots/query.c
+++ b/games/robots/query.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)query.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/query.c,v 1.5 1999/11/30 03:49:20 billf Exp $";
#endif /* not lint */
#include <string.h>
diff --git a/games/robots/rnd_pos.c b/games/robots/rnd_pos.c
index 13be7cac90ee..bb02dab987ea 100644
--- a/games/robots/rnd_pos.c
+++ b/games/robots/rnd_pos.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)rnd_pos.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/rnd_pos.c,v 1.5 1999/11/30 03:49:20 billf Exp $";
#endif /* not lint */
# include <stdlib.h>
diff --git a/games/robots/robots.6 b/games/robots/robots.6
index fea968677660..33eca2ac3348 100644
--- a/games/robots/robots.6
+++ b/games/robots/robots.6
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)robots.6 8.1 (Berkeley) 5/31/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/games/robots/robots.6,v 1.3 1999/08/27 23:29:15 peter Exp $
.\"
.TH ROBOTS 6 "May 31, 1993"
.UC 6
diff --git a/games/robots/score.c b/games/robots/score.c
index 21fadf5f1c1a..7c1c145e9cf6 100644
--- a/games/robots/score.c
+++ b/games/robots/score.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/games/robots/score.c,v 1.5 1999/11/30 03:49:20 billf Exp $";
#endif /* not lint */
# include "robots.h"