summaryrefslogtreecommitdiffstats
path: root/rogue
diff options
context:
space:
mode:
authoragc <agc@NetBSD.org>2003-08-07 09:36:50 +0000
committeragc <agc@NetBSD.org>2003-08-07 09:36:50 +0000
commitf12b51f99bbe8bb6ad7eca12b047ba9b46836ee6 (patch)
tree7635b4d89a5165fae2f434fd55d5aada779b2780 /rogue
parent777ce12ba55c91d9e55aeaace852e7eadac41c70 (diff)
downloadbsdgames-darwin-f12b51f99bbe8bb6ad7eca12b047ba9b46836ee6.tar.gz
bsdgames-darwin-f12b51f99bbe8bb6ad7eca12b047ba9b46836ee6.tar.zst
bsdgames-darwin-f12b51f99bbe8bb6ad7eca12b047ba9b46836ee6.zip
Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
Diffstat (limited to 'rogue')
-rw-r--r--rogue/USD.doc/rogue.me8
-rw-r--r--rogue/hit.c10
-rw-r--r--rogue/init.c10
-rw-r--r--rogue/inventory.c10
-rw-r--r--rogue/level.c10
-rw-r--r--rogue/machdep.c10
-rw-r--r--rogue/main.c10
-rw-r--r--rogue/message.c10
-rw-r--r--rogue/monster.c10
-rw-r--r--rogue/move.c10
-rw-r--r--rogue/object.c10
-rw-r--r--rogue/pack.c10
-rw-r--r--rogue/pathnames.h8
-rw-r--r--rogue/play.c10
-rw-r--r--rogue/random.c10
-rw-r--r--rogue/ring.c10
-rw-r--r--rogue/rogue.68
-rw-r--r--rogue/rogue.h8
-rw-r--r--rogue/room.c10
-rw-r--r--rogue/save.c10
-rw-r--r--rogue/score.c10
-rw-r--r--rogue/spec_hit.c10
-rw-r--r--rogue/throw.c10
-rw-r--r--rogue/trap.c10
-rw-r--r--rogue/use.c10
-rw-r--r--rogue/zap.c10
26 files changed, 74 insertions, 178 deletions
diff --git a/rogue/USD.doc/rogue.me b/rogue/USD.doc/rogue.me
index c814feaa..5bcc2caf 100644
--- a/rogue/USD.doc/rogue.me
+++ b/rogue/USD.doc/rogue.me
@@ -1,4 +1,4 @@
-.\" $NetBSD: rogue.me,v 1.4 2001/08/09 13:09:59 wiz Exp $
+.\" $NetBSD: rogue.me,v 1.5 2003/08/07 09:37:41 agc Exp $
.\"
.\" Copyright (c) 1986, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -11,11 +11,7 @@
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\" must display the following acknowledgement:
-.\" This product includes software developed by the University of
-.\" California, Berkeley and its contributors.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
diff --git a/rogue/hit.c b/rogue/hit.c
index a0c69f90..33db6447 100644
--- a/rogue/hit.c
+++ b/rogue/hit.c
@@ -1,4 +1,4 @@
-/* $NetBSD: hit.c,v 1.6 2002/07/07 09:35:07 tron Exp $ */
+/* $NetBSD: hit.c,v 1.7 2003/08/07 09:37:37 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)hit.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: hit.c,v 1.6 2002/07/07 09:35:07 tron Exp $");
+__RCSID("$NetBSD: hit.c,v 1.7 2003/08/07 09:37:37 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/init.c b/rogue/init.c
index 20f15eec..d077bf22 100644
--- a/rogue/init.c
+++ b/rogue/init.c
@@ -1,4 +1,4 @@
-/* $NetBSD: init.c,v 1.12 2001/12/06 12:19:44 blymn Exp $ */
+/* $NetBSD: init.c,v 1.13 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: init.c,v 1.12 2001/12/06 12:19:44 blymn Exp $");
+__RCSID("$NetBSD: init.c,v 1.13 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/inventory.c b/rogue/inventory.c
index ed0f9337..db28c2c3 100644
--- a/rogue/inventory.c
+++ b/rogue/inventory.c
@@ -1,4 +1,4 @@
-/* $NetBSD: inventory.c,v 1.8 2002/10/01 14:18:57 mrg Exp $ */
+/* $NetBSD: inventory.c,v 1.9 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)inventory.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: inventory.c,v 1.8 2002/10/01 14:18:57 mrg Exp $");
+__RCSID("$NetBSD: inventory.c,v 1.9 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/level.c b/rogue/level.c
index b57e1f21..ecf10468 100644
--- a/rogue/level.c
+++ b/rogue/level.c
@@ -1,4 +1,4 @@
-/* $NetBSD: level.c,v 1.6 2003/01/20 05:29:55 simonb Exp $ */
+/* $NetBSD: level.c,v 1.7 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)level.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: level.c,v 1.6 2003/01/20 05:29:55 simonb Exp $");
+__RCSID("$NetBSD: level.c,v 1.7 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/machdep.c b/rogue/machdep.c
index c831fc90..1299d0d1 100644
--- a/rogue/machdep.c
+++ b/rogue/machdep.c
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.11 1999/09/13 17:14:08 jsm Exp $ */
+/* $NetBSD: machdep.c,v 1.12 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)machdep.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: machdep.c,v 1.11 1999/09/13 17:14:08 jsm Exp $");
+__RCSID("$NetBSD: machdep.c,v 1.12 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/main.c b/rogue/main.c
index bf33ab03..a2fad94f 100644
--- a/rogue/main.c
+++ b/rogue/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.4 1997/10/12 11:45:22 lukem Exp $ */
+/* $NetBSD: main.c,v 1.5 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -46,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: main.c,v 1.4 1997/10/12 11:45:22 lukem Exp $");
+__RCSID("$NetBSD: main.c,v 1.5 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/message.c b/rogue/message.c
index 20d4e3da..3e30e046 100644
--- a/rogue/message.c
+++ b/rogue/message.c
@@ -1,4 +1,4 @@
-/* $NetBSD: message.c,v 1.9 2002/10/01 14:18:57 mrg Exp $ */
+/* $NetBSD: message.c,v 1.10 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)message.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: message.c,v 1.9 2002/10/01 14:18:57 mrg Exp $");
+__RCSID("$NetBSD: message.c,v 1.10 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/monster.c b/rogue/monster.c
index 67bde91d..2bcc25d4 100644
--- a/rogue/monster.c
+++ b/rogue/monster.c
@@ -1,4 +1,4 @@
-/* $NetBSD: monster.c,v 1.7 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: monster.c,v 1.8 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)monster.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: monster.c,v 1.7 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: monster.c,v 1.8 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/move.c b/rogue/move.c
index 4ece8077..c846b742 100644
--- a/rogue/move.c
+++ b/rogue/move.c
@@ -1,4 +1,4 @@
-/* $NetBSD: move.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: move.c,v 1.6 2003/08/07 09:37:38 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: move.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: move.c,v 1.6 2003/08/07 09:37:38 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/object.c b/rogue/object.c
index 8330f7ed..8364e514 100644
--- a/rogue/object.c
+++ b/rogue/object.c
@@ -1,4 +1,4 @@
-/* $NetBSD: object.c,v 1.8 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: object.c,v 1.9 2003/08/07 09:37:39 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)object.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: object.c,v 1.8 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: object.c,v 1.9 2003/08/07 09:37:39 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/pack.c b/rogue/pack.c
index 4fe78089..5619d247 100644
--- a/rogue/pack.c
+++ b/rogue/pack.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pack.c,v 1.6 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: pack.c,v 1.7 2003/08/07 09:37:39 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)pack.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: pack.c,v 1.6 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: pack.c,v 1.7 2003/08/07 09:37:39 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/pathnames.h b/rogue/pathnames.h
index 20e5f273..475427a5 100644
--- a/rogue/pathnames.h
+++ b/rogue/pathnames.h
@@ -1,4 +1,4 @@
-/* $NetBSD: pathnames.h,v 1.3 1995/04/22 10:27:59 cgd Exp $ */
+/* $NetBSD: pathnames.h,v 1.4 2003/08/07 09:37:39 agc Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -12,11 +12,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
diff --git a/rogue/play.c b/rogue/play.c
index 7b53d6ed..c94f6e81 100644
--- a/rogue/play.c
+++ b/rogue/play.c
@@ -1,4 +1,4 @@
-/* $NetBSD: play.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: play.c,v 1.6 2003/08/07 09:37:39 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)play.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: play.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: play.c,v 1.6 2003/08/07 09:37:39 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/random.c b/rogue/random.c
index 83f65f5c..eee5c114 100644
--- a/rogue/random.c
+++ b/rogue/random.c
@@ -1,4 +1,4 @@
-/* $NetBSD: random.c,v 1.4 1997/10/12 11:45:43 lukem Exp $ */
+/* $NetBSD: random.c,v 1.5 2003/08/07 09:37:39 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)random.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: random.c,v 1.4 1997/10/12 11:45:43 lukem Exp $");
+__RCSID("$NetBSD: random.c,v 1.5 2003/08/07 09:37:39 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/ring.c b/rogue/ring.c
index 27ede2f8..8971f14c 100644
--- a/rogue/ring.c
+++ b/rogue/ring.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ring.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: ring.c,v 1.6 2003/08/07 09:37:39 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)ring.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: ring.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: ring.c,v 1.6 2003/08/07 09:37:39 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/rogue.6 b/rogue/rogue.6
index 79dff786..f049c2d1 100644
--- a/rogue/rogue.6
+++ b/rogue/rogue.6
@@ -1,4 +1,4 @@
-.\" $NetBSD: rogue.6,v 1.9 2003/04/26 21:30:51 wiz Exp $
+.\" $NetBSD: rogue.6,v 1.10 2003/08/07 09:37:39 agc Exp $
.\"
.\" Copyright (c) 1988, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -11,11 +11,7 @@
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\" must display the following acknowledgement:
-.\" This product includes software developed by the University of
-.\" California, Berkeley and its contributors.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
diff --git a/rogue/rogue.h b/rogue/rogue.h
index 67d104a5..b6854179 100644
--- a/rogue/rogue.h
+++ b/rogue/rogue.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rogue.h,v 1.13 2002/10/01 14:18:57 mrg Exp $ */
+/* $NetBSD: rogue.h,v 1.14 2003/08/07 09:37:39 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
diff --git a/rogue/room.c b/rogue/room.c
index df876f04..e07fb94c 100644
--- a/rogue/room.c
+++ b/rogue/room.c
@@ -1,4 +1,4 @@
-/* $NetBSD: room.c,v 1.6 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: room.c,v 1.7 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)room.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: room.c,v 1.6 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: room.c,v 1.7 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/save.c b/rogue/save.c
index 27e97c32..8cbf4029 100644
--- a/rogue/save.c
+++ b/rogue/save.c
@@ -1,4 +1,4 @@
-/* $NetBSD: save.c,v 1.8 2002/10/01 14:18:58 mrg Exp $ */
+/* $NetBSD: save.c,v 1.9 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)save.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: save.c,v 1.8 2002/10/01 14:18:58 mrg Exp $");
+__RCSID("$NetBSD: save.c,v 1.9 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/score.c b/rogue/score.c
index 73d34d9e..070329a4 100644
--- a/rogue/score.c
+++ b/rogue/score.c
@@ -1,4 +1,4 @@
-/* $NetBSD: score.c,v 1.10 2002/07/07 09:35:08 tron Exp $ */
+/* $NetBSD: score.c,v 1.11 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: score.c,v 1.10 2002/07/07 09:35:08 tron Exp $");
+__RCSID("$NetBSD: score.c,v 1.11 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/spec_hit.c b/rogue/spec_hit.c
index 137f0b0b..423f7416 100644
--- a/rogue/spec_hit.c
+++ b/rogue/spec_hit.c
@@ -1,4 +1,4 @@
-/* $NetBSD: spec_hit.c,v 1.4 1997/10/12 11:46:04 lukem Exp $ */
+/* $NetBSD: spec_hit.c,v 1.5 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)spec_hit.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: spec_hit.c,v 1.4 1997/10/12 11:46:04 lukem Exp $");
+__RCSID("$NetBSD: spec_hit.c,v 1.5 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/throw.c b/rogue/throw.c
index 31578f40..af91b6dc 100644
--- a/rogue/throw.c
+++ b/rogue/throw.c
@@ -1,4 +1,4 @@
-/* $NetBSD: throw.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: throw.c,v 1.6 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)throw.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: throw.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: throw.c,v 1.6 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/trap.c b/rogue/trap.c
index 44e95127..9ef133bc 100644
--- a/rogue/trap.c
+++ b/rogue/trap.c
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: trap.c,v 1.6 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)trap.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: trap.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: trap.c,v 1.6 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/use.c b/rogue/use.c
index 2b71d4f6..2e74fcea 100644
--- a/rogue/use.c
+++ b/rogue/use.c
@@ -1,4 +1,4 @@
-/* $NetBSD: use.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: use.c,v 1.6 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)use.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: use.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: use.c,v 1.6 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */
diff --git a/rogue/zap.c b/rogue/zap.c
index 3c3fea5e..73279c0f 100644
--- a/rogue/zap.c
+++ b/rogue/zap.c
@@ -1,4 +1,4 @@
-/* $NetBSD: zap.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $ */
+/* $NetBSD: zap.c,v 1.6 2003/08/07 09:37:40 agc Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -15,11 +15,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -41,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)zap.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: zap.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: zap.c,v 1.6 2003/08/07 09:37:40 agc Exp $");
#endif
#endif /* not lint */