]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
clean up import, NetBSD RCS Ids
authorcgd <cgd@NetBSD.org>
Sat, 22 Apr 1995 10:27:22 +0000 (10:27 +0000)
committercgd <cgd@NetBSD.org>
Sat, 22 Apr 1995 10:27:22 +0000 (10:27 +0000)
30 files changed:
rogue/CHANGES
rogue/Makefile
rogue/USD.doc/Makefile
rogue/USD.doc/rogue.me
rogue/curses.c
rogue/hit.c
rogue/init.c
rogue/inventory.c
rogue/level.c
rogue/machdep.c
rogue/main.c
rogue/message.c
rogue/monster.c
rogue/move.c
rogue/object.c
rogue/pack.c
rogue/pathnames.h
rogue/play.c
rogue/random.c
rogue/ring.c
rogue/rogue.6
rogue/rogue.h
rogue/room.c
rogue/save.c
rogue/score.c
rogue/spec_hit.c
rogue/throw.c
rogue/trap.c
rogue/use.c
rogue/zap.c

index 73a713538271e6501624cce34306272121ed0622..679c6384c8f0b4f7ddebd50862178343124e1d10 100644 (file)
@@ -1,3 +1,5 @@
+$NetBSD: CHANGES,v 1.2 1995/04/22 10:27:22 cgd Exp $
+
 From:    tektronix!zeus.TEK.COM!tims@ucbvax.Berkeley.EDU
 Date:    30 Nov 87 15:08:15 PST (Mon)
 To:      okeeffe.Berkeley.EDU!mckusick@ucbvax.Berkeley.EDU (Kirk McKusick)
index 4e3f6b4fcb8383a7246b4f26c757d6a88dfe2315..75782202c03accda631f522fc58ca804ade819c7 100644 (file)
@@ -1,13 +1,13 @@
-#      from: @(#)Makefile      5.7 (Berkeley) 5/11/90
-#      $Id: Makefile,v 1.5 1994/12/22 09:36:02 cgd Exp $
+#      $NetBSD: Makefile,v 1.6 1995/04/22 10:27:25 cgd Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  rogue
 CFLAGS+=-DUNIX -fwritable-strings
 SRCS=  curses.c hit.c init.c inventory.c level.c machdep.c main.c \
        message.c monster.c move.c object.c pack.c play.c random.c ring.c \
        room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.c
-DPADD= ${LIBCURSES} ${LIBTERM}
-LDADD= -lcurses -ltermlib
+DPADD= ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
+LDADD= -lcurses -ltermlib -lcompat
 HIDEGAME=hidegame
 MAN=   rogue.6
 
index 3df0ddba2c1b00dfd702b3051c7bce00b2324d15..359407d9e295b54b9da656994f1b26ac4fe536c7 100644 (file)
@@ -1,3 +1,4 @@
+#      $NetBSD: Makefile,v 1.2 1995/04/22 10:28:47 cgd Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/8/93
 
 DIR=   usd/30.rogue
index d65f280b49e92f838baa67e219049a5d800d2e9a..749648dee87937595f7dc2e6694052d61ac8a11c 100644 (file)
@@ -1,3 +1,5 @@
+.\"    $NetBSD: rogue.me,v 1.2 1995/04/22 10:28:50 cgd Exp $
+.\"
 .\" Copyright (c) 1986, 1993
 .\"    The Regents of the University of California.  All rights reserved.
 .\"
index 33ce4dcc558729968918553fe49059b2b9c312c6..743e9ee53fb9e5f00674e7e136aaa6f679a4c749 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: curses.c,v 1.3 1995/04/22 10:27:27 cgd Exp $   */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)curses.c   5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: curses.c,v 1.2 1993/08/01 18:52:32 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)curses.c   8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: curses.c,v 1.3 1995/04/22 10:27:27 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 205bb89d41ae3ef3a157ada687d7a00f52fd729f..cbcd869124ce503845790113815c349f8a1730bd 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: hit.c,v 1.3 1995/04/22 10:27:30 cgd Exp $      */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)hit.c      5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: hit.c,v 1.2 1993/08/01 18:52:31 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)hit.c      8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: hit.c,v 1.3 1995/04/22 10:27:30 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 8144a02e6c8a701ea9eaf8a84594cadaa08ff086..ac2ec8208b83205beae97a41bc677cb3b0360609 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: init.c,v 1.3 1995/04/22 10:27:32 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)init.c     5.4 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: init.c,v 1.2 1993/08/01 18:52:30 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)init.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: init.c,v 1.3 1995/04/22 10:27:32 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index fa2c26507da2f175848974eddc16b7c53632c833..c36f923542d25475c766bd7e00db9146409f79a7 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: inventory.c,v 1.3 1995/04/22 10:27:35 cgd Exp $        */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)inventory.c        5.4 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: inventory.c,v 1.2 1993/08/01 18:52:29 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)inventory.c        8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: inventory.c,v 1.3 1995/04/22 10:27:35 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 7ea14855e936ab1fbe33a6df473d0e594145dcab..b298bb044a19b030eaa5411f142e3cc44a0cf47f 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: level.c,v 1.3 1995/04/22 10:27:37 cgd Exp $    */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)level.c    5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: level.c,v 1.2 1993/08/01 18:52:28 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)level.c    8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: level.c,v 1.3 1995/04/22 10:27:37 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 640aa8a1621a40136ef9f81714508890dce12d44..baedb47bed773179d42955c19393cdf84ad8081e 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: machdep.c,v 1.3 1995/04/22 10:27:39 cgd Exp $  */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)machdep.c  5.7 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: machdep.c,v 1.2 1993/08/01 18:52:26 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)machdep.c  8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: machdep.c,v 1.3 1995/04/22 10:27:39 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
@@ -510,38 +515,31 @@ int status;
 /* md_lock():
  *
  * This function is intended to give the user exclusive access to the score
- * file.  It does so by "creat"ing a lock file, which can only be created
- * if it does not already exist.  The file is deleted when score file
- * processing is finished.  The lock file should be located in the same
- * directory as the score file.  These full path names should be defined for
- * any particular site in rogue.h.  The constants _PATH_SCOREFILE and
- * _PATH_LOCKFILE define these file names.
+ * file.  It does so by flock'ing the score file.  The full path name of the
+ * score file should be defined for any particular site in rogue.h.  The
+ * constants _PATH_SCOREFILE defines this file name.
  *
  * When the parameter 'l' is non-zero (true), a lock is requested.  Otherwise
- * the lock is released by removing the lock file.
+ * the lock is released.
  */
 
 md_lock(l)
 boolean l;
 {
+       static int fd;
        short tries;
-       char *lock_file = _PATH_LOCKFILE;
 
        if (l) {
-               for (tries = 0; tries < 5; tries++) {
-                       if (md_get_file_id(lock_file) == -1) {
-                               if (creat(lock_file, 0444) != -1) {
-                                       break;
-                               } else {
-                                       message("cannot lock score file", 0);
-                               }
-                       } else {
-                               message("waiting to lock score file", 0);
-                       }
-                       sleep(2);
+               if ((fd = open(_PATH_SCOREFILE, O_RDONLY)) < 1) {
+                       message("cannot lock score file", 0);
+                       return;
                }
+               for (tries = 0; tries < 5; tries++)
+                       if (!flock(fd, LOCK_EX|LOCK_NB))
+                               return;
        } else {
-               (void) unlink(lock_file);
+               (void)flock(fd, LOCK_NB);
+               (void)close(fd);
        }
 }
 
index febec33083ca4dcccb1153e52e155caa42e0b006..5e472e15ac0110b08d97c72b1730b2213e0f4a00 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: main.c,v 1.3 1995/04/22 10:27:41 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1988 The Regents of the University of California.\n\
- All rights reserved.\n";
+static char copyright[] =
+"@(#) Copyright (c) 1988, 1993\n\
      The Regents of the University of California.  All rights reserved.\n";
 #endif /* not lint */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)main.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: main.c,v 1.2 1993/08/01 18:52:25 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)main.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: main.c,v 1.3 1995/04/22 10:27:41 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 4e48e18d71fae185a0a51ee083e2bddf39b8f8cc..3e12c51c9f7d6752add72eb215b11427abafa419 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: message.c,v 1.5 1995/04/22 10:27:43 cgd Exp $  */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)message.c  5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: message.c,v 1.4 1993/11/10 10:02:19 cgd Exp $";
+#if 0
+static char sccsid[] = "@(#)message.c  8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: message.c,v 1.5 1995/04/22 10:27:43 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index a81fd31163357634db31628291e4d942f4430f11..176ac756923af3b32526afe7db3466ae6fee654e 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: monster.c,v 1.3 1995/04/22 10:27:45 cgd Exp $  */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)monster.c  5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: monster.c,v 1.2 1993/08/01 18:52:23 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)monster.c  8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: monster.c,v 1.3 1995/04/22 10:27:45 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index cda2ab198a77f6a1c0613acdbad357cf5009a894..86e36cf7523b9987a337715d7c39ee43b6505da8 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: move.c,v 1.3 1995/04/22 10:27:47 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)move.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: move.c,v 1.2 1993/08/01 18:52:22 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)move.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: move.c,v 1.3 1995/04/22 10:27:47 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 188987d9c8fe4070b75da2095144e0a9a926d1c4..b6f5043ade6c9a8406819ba7a10a10435d894274 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: object.c,v 1.3 1995/04/22 10:27:50 cgd Exp $   */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)object.c   5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: object.c,v 1.2 1993/08/01 18:52:21 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)object.c   8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: object.c,v 1.3 1995/04/22 10:27:50 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 46c580cfba36f9efbf6d1c7fc02305497dc2b27f..b91bc5a827a6df1eb18f54c63b5da1d66d9aeb12 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: pack.c,v 1.3 1995/04/22 10:27:54 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)pack.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: pack.c,v 1.2 1993/08/01 18:52:20 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)pack.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: pack.c,v 1.3 1995/04/22 10:27:54 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
@@ -294,6 +299,7 @@ unsigned short mask;
 
                if (ch == LIST) {
                        check_message();
+                       mask = tmask;
                        inventory(&rogue.pack, mask);
                } else {
                        break;
index a6eb48c9b36e8baab07bdd08edd2229077c4c0be..20e5f2733849a8a673a3c66d6e525f411ecfd269 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: pathnames.h,v 1.3 1995/04/22 10:27:59 cgd Exp $        */
+
 /*-
- * Copyright (c) 1990 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *     from: @(#)pathnames.h   5.1 (Berkeley) 6/1/90
- *     $Id: pathnames.h,v 1.2 1993/08/01 18:52:34 mycroft Exp $
+ *     @(#)pathnames.h 8.1 (Berkeley) 5/31/93
  */
 
 #define        _PATH_SCOREFILE "/var/games/rogue.scores"
-#define        _PATH_LOCKFILE  "/var/games/rogue.lock"
-
index de89a3090fbf629474408a17b04f3453bce5e24f..601f89249012f6602b9d75815c21984d6123a627 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: play.c,v 1.3 1995/04/22 10:28:04 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)play.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: play.c,v 1.2 1993/08/01 18:52:19 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)play.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: play.c,v 1.3 1995/04/22 10:28:04 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 90e9676c148f5729907e9c166469bbcd43958e1e..6e2abc6025ac8cc1df257bc8d9f6a92314b27bc7 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: random.c,v 1.3 1995/04/22 10:28:06 cgd Exp $   */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)random.c   5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: random.c,v 1.2 1993/08/01 18:52:18 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)random.c   8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: random.c,v 1.3 1995/04/22 10:28:06 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index ff5fa8b33e6f26b5a08100269f9149e6925574d4..b531fa474e3b19f4e661b31c467e518d707c2451 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: ring.c,v 1.3 1995/04/22 10:28:09 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)ring.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: ring.c,v 1.2 1993/08/01 18:52:17 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)ring.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: ring.c,v 1.3 1995/04/22 10:28:09 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 4fd393627dc88d78c82e2be2e1ad2e8ce6f007f5..001a871972fc4a8eaf76bb11ca6b6c510a50e19d 100644 (file)
@@ -1,5 +1,7 @@
-.\" Copyright (c) 1988 The Regents of the University of California.
-.\" All rights reserved.
+.\"    $NetBSD: rogue.6,v 1.5 1995/04/22 10:28:12 cgd Exp $
+.\"
+.\" Copyright (c) 1988, 1993
+.\"    The Regents of the University of California.  All rights reserved.
 .\"
 .\" Redistribution and use in source and binary forms, with or without
 .\" modification, are permitted provided that the following conditions
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.\"    from: @(#)rogue.6       6.5 (Berkeley) 6/23/90
-.\"    $Id: rogue.6,v 1.4 1993/08/09 22:20:37 jtc Exp $
+.\"    @(#)rogue.6     8.1 (Berkeley) 5/31/93
 .\"
-.Dd June 23, 1990
+.Dd May 31, 1993
 .Dt ROGUE 6
+.Os
 .Sh NAME
 .Nm rogue
 .Nd Exploring The Dungeons of Doom
index f21ae38db67f2549b2a2d6d6e485c58185524d38..94e37db99fc5ca25430494ba12f748e85cd6ce68 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: rogue.h,v 1.3 1995/04/22 10:28:14 cgd Exp $    */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timoth C. Stoehr.
@@ -33,8 +35,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *     from: @(#)rogue.h       5.6 (Berkeley) 2/28/91
- *     $Id: rogue.h,v 1.2 1993/08/01 18:52:33 mycroft Exp $
+ *     @(#)rogue.h     8.1 (Berkeley) 5/31/93
  */
 
 /*
index 33b188cda9c7bb5589221a5b207ccf8395e2bdf5..88cd0e36dd8e23478bc712488dfd40caf18f1b8b 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: room.c,v 1.3 1995/04/22 10:28:17 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)room.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: room.c,v 1.2 1993/08/01 18:52:16 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)room.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: room.c,v 1.3 1995/04/22 10:28:17 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index fc7940904133ebe4c4a45588c800a095303fb1f8..135e0db09984875327288d7693de285cbe1f8589 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: save.c,v 1.3 1995/04/22 10:28:21 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)save.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: save.c,v 1.2 1993/08/01 18:52:14 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)save.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: save.c,v 1.3 1995/04/22 10:28:21 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 4b4f06918117e9cd9942548f2b638926cf6078d8..814c1d3915fe01ee97ab22bff111b17451612225 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: score.c,v 1.5 1995/04/22 10:28:26 cgd Exp $    */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)score.c    5.5 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: score.c,v 1.4 1993/11/10 10:02:20 cgd Exp $";
+#if 0
+static char sccsid[] = "@(#)score.c    8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: score.c,v 1.5 1995/04/22 10:28:26 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 1a1cd55b7a4393d587e5488e884328b97fdcf71b..e4de5a03b8830e3cad34f5e201637b64f57dc3e8 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: spec_hit.c,v 1.3 1995/04/22 10:28:29 cgd Exp $ */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)spec_hit.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: spec_hit.c,v 1.2 1993/08/01 18:52:12 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)spec_hit.c 8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: spec_hit.c,v 1.3 1995/04/22 10:28:29 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 6b27587768ccccaba1b6117c55b58e3f14d9e31f..a5cf0dadfb83a3f9b9b8bb13621c417e78c68f10 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: throw.c,v 1.3 1995/04/22 10:28:32 cgd Exp $    */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)throw.c    5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: throw.c,v 1.2 1993/08/01 18:52:11 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)throw.c    8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: throw.c,v 1.3 1995/04/22 10:28:32 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 55b23ffb20168e6d331b04dc4e2da74589a136de..bd2aff3723f96e427e4b0ab1393c2baed15556d4 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: trap.c,v 1.3 1995/04/22 10:28:35 cgd Exp $     */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)trap.c     5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: trap.c,v 1.2 1993/08/01 18:52:09 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)trap.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: trap.c,v 1.3 1995/04/22 10:28:35 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index cc5149401fc1b49594009dfa9332e1f78a3b5e0e..ebc82b78277e247420ef7f795706486364dac272 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: use.c,v 1.3 1995/04/22 10:28:38 cgd Exp $      */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)use.c      5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: use.c,v 1.2 1993/08/01 18:52:08 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)use.c      8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: use.c,v 1.3 1995/04/22 10:28:38 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*
index 7180ce59bb57eb957010fcd4653e1a1a01747f58..401d44932faf4b094ee9c8309bd15e057b66e4bc 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: zap.c,v 1.3 1995/04/22 10:28:41 cgd Exp $      */
+
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Timothy C. Stoehr.
  */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)zap.c      5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: zap.c,v 1.2 1993/08/01 18:52:07 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)zap.c      8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: zap.c,v 1.3 1995/04/22 10:28:41 cgd Exp $";
+#endif
 #endif /* not lint */
 
 /*