aboutsummaryrefslogtreecommitdiff
path: root/games/hack
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-11-16 02:45:03 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-11-16 02:45:03 +0000
commit879099e5568801911b66f1ea9085fed24fc12560 (patch)
treefb2e5c560049a27cac421b3293dfa3b8caf766de /games/hack
parent1588197d6acff94e3df0cbfb327cd1144c7fa830 (diff)
Notes
Diffstat (limited to 'games/hack')
-rw-r--r--games/hack/alloc.c2
-rw-r--r--games/hack/hack.apply.c1
-rw-r--r--games/hack/hack.bones.c1
-rw-r--r--games/hack/hack.c1
-rw-r--r--games/hack/hack.cmd.c1
-rw-r--r--games/hack/hack.do.c1
-rw-r--r--games/hack/hack.do_name.c1
-rw-r--r--games/hack/hack.do_wear.c1
-rw-r--r--games/hack/hack.dog.c1
-rw-r--r--games/hack/hack.eat.c1
-rw-r--r--games/hack/hack.end.c1
-rw-r--r--games/hack/hack.engrave.c1
-rw-r--r--games/hack/hack.fight.c1
-rw-r--r--games/hack/hack.invent.c1
-rw-r--r--games/hack/hack.lev.c1
-rw-r--r--games/hack/hack.main.c1
-rw-r--r--games/hack/hack.makemon.c1
-rw-r--r--games/hack/hack.mhitu.c1
-rw-r--r--games/hack/hack.mklev.c1
-rw-r--r--games/hack/hack.mkmaze.c1
-rw-r--r--games/hack/hack.mkobj.c1
-rw-r--r--games/hack/hack.mkshop.c1
-rw-r--r--games/hack/hack.mon.c1
-rw-r--r--games/hack/hack.o_init.c1
-rw-r--r--games/hack/hack.objnam.c1
-rw-r--r--games/hack/hack.options.c1
-rw-r--r--games/hack/hack.pager.c1
-rw-r--r--games/hack/hack.potion.c1
-rw-r--r--games/hack/hack.pri.c1
-rw-r--r--games/hack/hack.read.c1
-rw-r--r--games/hack/hack.rip.c1
-rw-r--r--games/hack/hack.rumors.c1
-rw-r--r--games/hack/hack.save.c1
-rw-r--r--games/hack/hack.search.c1
-rw-r--r--games/hack/hack.shk.c1
-rw-r--r--games/hack/hack.shknam.c1
-rw-r--r--games/hack/hack.steal.c1
-rw-r--r--games/hack/hack.termcap.c1
-rw-r--r--games/hack/hack.timeout.c1
-rw-r--r--games/hack/hack.topl.c1
-rw-r--r--games/hack/hack.track.c1
-rw-r--r--games/hack/hack.trap.c1
-rw-r--r--games/hack/hack.tty.c2
-rw-r--r--games/hack/hack.u_init.c1
-rw-r--r--games/hack/hack.unix.c1
-rw-r--r--games/hack/hack.vault.c1
-rw-r--r--games/hack/hack.wield.c1
-rw-r--r--games/hack/hack.wizard.c1
-rw-r--r--games/hack/hack.worm.c1
-rw-r--r--games/hack/hack.worn.c1
-rw-r--r--games/hack/hack.zap.c1
-rw-r--r--games/hack/makedefs.c1
-rw-r--r--games/hack/rnd.c1
53 files changed, 55 insertions, 0 deletions
diff --git a/games/hack/alloc.c b/games/hack/alloc.c
index 0e46ebce689f..30a6a96f2ef9 100644
--- a/games/hack/alloc.c
+++ b/games/hack/alloc.c
@@ -1,4 +1,6 @@
/* alloc.c - version 1.0.2 */
+/* $FreeBSD$ */
+
#include <stdlib.h>
#ifdef LINT
diff --git a/games/hack/hack.apply.c b/games/hack/hack.apply.c
index 18da738dfe9c..2a29e7990024 100644
--- a/games/hack/hack.apply.c
+++ b/games/hack/hack.apply.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.apply.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include "def.edog.h"
diff --git a/games/hack/hack.bones.c b/games/hack/hack.bones.c
index d4a05b822212..69eb2a86a02e 100644
--- a/games/hack/hack.bones.c
+++ b/games/hack/hack.bones.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.bones.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
extern char plname[PL_NSIZ];
diff --git a/games/hack/hack.c b/games/hack/hack.c
index 5c8288144ed8..6863b6096019 100644
--- a/games/hack/hack.c
+++ b/games/hack/hack.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.cmd.c b/games/hack/hack.cmd.c
index e36cfcca9d66..5eedbf591996 100644
--- a/games/hack/hack.cmd.c
+++ b/games/hack/hack.cmd.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.cmd.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include "def.func_tab.h"
diff --git a/games/hack/hack.do.c b/games/hack/hack.do.c
index 1227eb923dd8..b8dd66ffafba 100644
--- a/games/hack/hack.do.c
+++ b/games/hack/hack.do.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.do.c - version 1.0.3 */
+/* $FreeBSD$ */
/* Contains code for 'd', 'D' (drop), '>', '<' (up, down) and 't' (throw) */
diff --git a/games/hack/hack.do_name.c b/games/hack/hack.do_name.c
index bc49510a2667..538bd7fb3234 100644
--- a/games/hack/hack.do_name.c
+++ b/games/hack/hack.do_name.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.do_name.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.do_wear.c b/games/hack/hack.do_wear.c
index 423955d2940a..14f74e429fae 100644
--- a/games/hack/hack.do_wear.c
+++ b/games/hack/hack.do_wear.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.do_wear.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.dog.c b/games/hack/hack.dog.c
index aa4387abbee9..c47a3531a604 100644
--- a/games/hack/hack.dog.c
+++ b/games/hack/hack.dog.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.dog.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include "hack.mfndpos.h"
diff --git a/games/hack/hack.eat.c b/games/hack/hack.eat.c
index f1a767779af1..9c0a64cf0636 100644
--- a/games/hack/hack.eat.c
+++ b/games/hack/hack.eat.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.eat.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
char POISONOUS[] = "ADKSVabhks";
diff --git a/games/hack/hack.end.c b/games/hack/hack.end.c
index 0ddd2bd0edb7..c089b446cc81 100644
--- a/games/hack/hack.end.c
+++ b/games/hack/hack.end.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.end.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.engrave.c b/games/hack/hack.engrave.c
index d5ea219b4b8c..d3bf27f6cbc0 100644
--- a/games/hack/hack.engrave.c
+++ b/games/hack/hack.engrave.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.engrave.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.fight.c b/games/hack/hack.fight.c
index 9e07ece414bd..f8e2ea98e786 100644
--- a/games/hack/hack.fight.c
+++ b/games/hack/hack.fight.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.fight.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
extern struct permonst li_dog, dog, la_dog;
diff --git a/games/hack/hack.invent.c b/games/hack/hack.invent.c
index 66949b87afe1..d5af8430b727 100644
--- a/games/hack/hack.invent.c
+++ b/games/hack/hack.invent.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.invent.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.lev.c b/games/hack/hack.lev.c
index f011f675fb8a..82afd61b7064 100644
--- a/games/hack/hack.lev.c
+++ b/games/hack/hack.lev.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.lev.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include "def.mkroom.h"
diff --git a/games/hack/hack.main.c b/games/hack/hack.main.c
index 06629d55ef5a..af3080f1c7ba 100644
--- a/games/hack/hack.main.c
+++ b/games/hack/hack.main.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.main.c - version 1.0.3 */
+/* $FreeBSD$ */
#include <stdio.h>
#include <signal.h>
diff --git a/games/hack/hack.makemon.c b/games/hack/hack.makemon.c
index bcf23b621d74..7ad6385f732a 100644
--- a/games/hack/hack.makemon.c
+++ b/games/hack/hack.makemon.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.makemon.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
extern char fut_geno[];
diff --git a/games/hack/hack.mhitu.c b/games/hack/hack.mhitu.c
index ae7d204b17e7..f41e00e12d5b 100644
--- a/games/hack/hack.mhitu.c
+++ b/games/hack/hack.mhitu.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.mhitu.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
extern struct monst *makemon();
diff --git a/games/hack/hack.mklev.c b/games/hack/hack.mklev.c
index 3217923d274e..cad724f81bf5 100644
--- a/games/hack/hack.mklev.c
+++ b/games/hack/hack.mklev.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.mklev.c - version 1.0.3 */
+/* $FreeBSD$ */
#include <stdlib.h>
#include <unistd.h>
diff --git a/games/hack/hack.mkmaze.c b/games/hack/hack.mkmaze.c
index bee24f954c30..66cf634588a0 100644
--- a/games/hack/hack.mkmaze.c
+++ b/games/hack/hack.mkmaze.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.mkmaze.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
#include "def.mkroom.h" /* not really used */
diff --git a/games/hack/hack.mkobj.c b/games/hack/hack.mkobj.c
index 6fe23ac7c11f..d377e2177d39 100644
--- a/games/hack/hack.mkobj.c
+++ b/games/hack/hack.mkobj.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.mkobj.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.mkshop.c b/games/hack/hack.mkshop.c
index a94c24de2a19..2ed2d4160f22 100644
--- a/games/hack/hack.mkshop.c
+++ b/games/hack/hack.mkshop.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.mkshop.c - version 1.0.3 */
+/* $FreeBSD$ */
#ifndef QUEST
#include "hack.h"
diff --git a/games/hack/hack.mon.c b/games/hack/hack.mon.c
index f89b3a8d19a5..237fada71f69 100644
--- a/games/hack/hack.mon.c
+++ b/games/hack/hack.mon.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.mon.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include "hack.mfndpos.h"
diff --git a/games/hack/hack.o_init.c b/games/hack/hack.o_init.c
index 9fef91b04864..f55d96c948d5 100644
--- a/games/hack/hack.o_init.c
+++ b/games/hack/hack.o_init.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.o_init.c - version 1.0.3 */
+/* $FreeBSD$ */
#include <string.h>
#include "config.h" /* for typedefs */
diff --git a/games/hack/hack.objnam.c b/games/hack/hack.objnam.c
index a1c966cd912e..ad47e7e77115 100644
--- a/games/hack/hack.objnam.c
+++ b/games/hack/hack.objnam.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.objnam.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
#define Sprintf (void) sprintf
diff --git a/games/hack/hack.options.c b/games/hack/hack.options.c
index 1fd754ac1282..1c3a4a51c442 100644
--- a/games/hack/hack.options.c
+++ b/games/hack/hack.options.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.options.c - version 1.0.3 */
+/* $FreeBSD$ */
#include <stdlib.h>
#include "config.h"
diff --git a/games/hack/hack.pager.c b/games/hack/hack.pager.c
index 30ef8c1338c2..3610494754ec 100644
--- a/games/hack/hack.pager.c
+++ b/games/hack/hack.pager.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.pager.c - version 1.0.3 */
+/* $FreeBSD$ */
/* This file contains the command routine dowhatis() and a pager. */
/* Also readmail() and doshell(), and generally the things that
diff --git a/games/hack/hack.potion.c b/games/hack/hack.potion.c
index 08593abf2f46..1beaa1a20f76 100644
--- a/games/hack/hack.potion.c
+++ b/games/hack/hack.potion.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.potion.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
extern int float_down();
diff --git a/games/hack/hack.pri.c b/games/hack/hack.pri.c
index eb412f1edf90..fcbd581361cf 100644
--- a/games/hack/hack.pri.c
+++ b/games/hack/hack.pri.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.pri.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.read.c b/games/hack/hack.read.c
index f7104b600367..00c9584bbc42 100644
--- a/games/hack/hack.read.c
+++ b/games/hack/hack.read.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.read.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.rip.c b/games/hack/hack.rip.c
index bdc282308c7e..f9d4a4acfe29 100644
--- a/games/hack/hack.rip.c
+++ b/games/hack/hack.rip.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.rip.c - version 1.0.2 */
+/* $FreeBSD$ */
#include <stdio.h>
#include "hack.h"
diff --git a/games/hack/hack.rumors.c b/games/hack/hack.rumors.c
index ee5f139993ce..2a3d5caac4b0 100644
--- a/games/hack/hack.rumors.c
+++ b/games/hack/hack.rumors.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.rumors.c - version 1.0.3 */
+/* $FreeBSD$ */
#include <stdio.h>
#include "hack.h" /* for RUMORFILE and BSD (index) */
diff --git a/games/hack/hack.save.c b/games/hack/hack.save.c
index 5fd7ba1f2329..d6b3e37cc2b1 100644
--- a/games/hack/hack.save.c
+++ b/games/hack/hack.save.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.save.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
extern char genocided[60]; /* defined in Decl.c */
diff --git a/games/hack/hack.search.c b/games/hack/hack.search.c
index c0ef9932ee91..fcb0a85de775 100644
--- a/games/hack/hack.search.c
+++ b/games/hack/hack.search.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.search.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.shk.c b/games/hack/hack.shk.c
index 340a9b7a3788..cb9fb5e2d2f3 100644
--- a/games/hack/hack.shk.c
+++ b/games/hack/hack.shk.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.shk.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#ifdef QUEST
diff --git a/games/hack/hack.shknam.c b/games/hack/hack.shknam.c
index 9d4b860ff6b6..b0a015abc905 100644
--- a/games/hack/hack.shknam.c
+++ b/games/hack/hack.shknam.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.shknam.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.steal.c b/games/hack/hack.steal.c
index f123d37f790b..232863d9fc9a 100644
--- a/games/hack/hack.steal.c
+++ b/games/hack/hack.steal.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.steal.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.termcap.c b/games/hack/hack.termcap.c
index 43ce418e6d40..ce11e82aec7b 100644
--- a/games/hack/hack.termcap.c
+++ b/games/hack/hack.termcap.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.termcap.c - version 1.0.3 */
+/* $FreeBSD$ */
#include <stdio.h>
#include <termcap.h>
diff --git a/games/hack/hack.timeout.c b/games/hack/hack.timeout.c
index d828297684ff..ea0cc82c1953 100644
--- a/games/hack/hack.timeout.c
+++ b/games/hack/hack.timeout.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.timeout.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.topl.c b/games/hack/hack.topl.c
index 13a033d19c5e..281735986604 100644
--- a/games/hack/hack.topl.c
+++ b/games/hack/hack.topl.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.topl.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.track.c b/games/hack/hack.track.c
index 6b41c2cdb118..bb6564a90a65 100644
--- a/games/hack/hack.track.c
+++ b/games/hack/hack.track.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.track.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.trap.c b/games/hack/hack.trap.c
index 7ec0f93c9341..d8a89c7db322 100644
--- a/games/hack/hack.trap.c
+++ b/games/hack/hack.trap.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.trap.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.tty.c b/games/hack/hack.tty.c
index bc225071c5e5..d0b3b5815b01 100644
--- a/games/hack/hack.tty.c
+++ b/games/hack/hack.tty.c
@@ -29,6 +29,8 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
+ *
+ * $FreeBSD$
*/
#ifndef lint
diff --git a/games/hack/hack.u_init.c b/games/hack/hack.u_init.c
index cb8a97d4e1cf..913aef3bee4d 100644
--- a/games/hack/hack.u_init.c
+++ b/games/hack/hack.u_init.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.u_init.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
#include <stdio.h>
diff --git a/games/hack/hack.unix.c b/games/hack/hack.unix.c
index abe34b50baeb..87817444c6ad 100644
--- a/games/hack/hack.unix.c
+++ b/games/hack/hack.unix.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.unix.c - version 1.0.3 */
+/* $FreeBSD$ */
/* This file collects some Unix dependencies; hack.pager.c contains some more */
diff --git a/games/hack/hack.vault.c b/games/hack/hack.vault.c
index a82c9f9a509b..a4369032464b 100644
--- a/games/hack/hack.vault.c
+++ b/games/hack/hack.vault.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.vault.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
#ifdef QUEST
diff --git a/games/hack/hack.wield.c b/games/hack/hack.wield.c
index d0609a1cb6d4..a23e763e8c41 100644
--- a/games/hack/hack.wield.c
+++ b/games/hack/hack.wield.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.wield.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
extern struct obj zeroobj;
diff --git a/games/hack/hack.wizard.c b/games/hack/hack.wizard.c
index 835ecc3dfbd9..8bc7f36c608b 100644
--- a/games/hack/hack.wizard.c
+++ b/games/hack/hack.wizard.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.wizard.c - version 1.0.3 */
+/* $FreeBSD$ */
/* wizard code - inspired by rogue code from Merlyn Leroy (digi-g!brian) */
diff --git a/games/hack/hack.worm.c b/games/hack/hack.worm.c
index ba3505d19b4f..784e12c68cbc 100644
--- a/games/hack/hack.worm.c
+++ b/games/hack/hack.worm.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.worm.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
#ifndef NOWORM
diff --git a/games/hack/hack.worn.c b/games/hack/hack.worn.c
index bfec47f21996..38ffac274fbe 100644
--- a/games/hack/hack.worn.c
+++ b/games/hack/hack.worn.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.worn.c - version 1.0.2 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/hack.zap.c b/games/hack/hack.zap.c
index e1472b56906f..1d3212412f95 100644
--- a/games/hack/hack.zap.c
+++ b/games/hack/hack.zap.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.zap.c - version 1.0.3 */
+/* $FreeBSD$ */
#include "hack.h"
diff --git a/games/hack/makedefs.c b/games/hack/makedefs.c
index 1097ba55e117..1d75449fcf81 100644
--- a/games/hack/makedefs.c
+++ b/games/hack/makedefs.c
@@ -1,5 +1,6 @@
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* makedefs.c - version 1.0.2 */
+/* $FreeBSD$ */
#include <stdio.h>
#include <string.h>
diff --git a/games/hack/rnd.c b/games/hack/rnd.c
index 022cf691014d..3d435979e22d 100644
--- a/games/hack/rnd.c
+++ b/games/hack/rnd.c
@@ -1,4 +1,5 @@
/* rnd.c - version 1.0.2 */
+/* $FreeBSD$ */
#include <stdlib.h>