]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/parties.c
This patch fixes a -Wcast-qual warning in wump(6).
[bsdgames-darwin.git] / sail / parties.c
index 682512d50916430e7db732aa7d19882de2bda8cf..4e6994c534e411eb70810191c75932c13698e27b 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: parties.c,v 1.6 1999/02/10 00:45:46 hubertf Exp $      */
+
 /*
- * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1983, 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
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-static char sccsid[] = "@(#)parties.c  5.4 (Berkeley) 6/1/90";
+#if 0
+static char sccsid[] = "@(#)parties.c  8.2 (Berkeley) 4/28/95";
+#else
+__RCSID("$NetBSD: parties.c,v 1.6 1999/02/10 00:45:46 hubertf Exp $");
+#endif
 #endif /* not lint */
 
-#include "externs.h"
+#include "extern.h"
 
+int
 meleeing(from, to)
 struct ship *from;
-register struct ship *to;
+struct ship *to;
 {
-       register struct BP *p = from->file->OBP;
-       register struct BP *q = p + NBP;
+       struct BP *p = from->file->OBP;
+       struct BP *q = p + NBP;
 
        for (; p < q; p++)
                if (p->turnsent && p->toship == to)
@@ -50,12 +58,13 @@ register struct ship *to;
        return 0;
 }
 
+int
 boarding(from, isdefense)
-register struct ship *from;
+struct ship *from;
 char isdefense;
 {
-       register struct BP *p = isdefense ? from->file->DBP : from->file->OBP;
-       register struct BP *q = p + NBP;
+       struct BP *p = isdefense ? from->file->DBP : from->file->OBP;
+       struct BP *q = p + NBP;
 
        for (; p < q; p++)
                if (p->turnsent)
@@ -63,14 +72,15 @@ char isdefense;
        return 0;
 }
 
+void
 unboard(ship, to, isdefense)
-register struct ship *ship, *to;
-register char isdefense;
+struct ship *ship, *to;
+char isdefense;
 {
-       register struct BP *p = isdefense ? ship->file->DBP : ship->file->OBP;
-       register n;
+       struct BP *p = isdefense ? ship->file->DBP : ship->file->OBP;
+       int n;
 
        for (n = 0; n < NBP; p++, n++)
                if (p->turnsent && (p->toship == to || isdefense || ship == to))
-                       Write(isdefense ? W_DBP : W_OBP, ship, 0, n, 0, 0, 0);
+                       Write(isdefense ? W_DBP : W_OBP, ship, n, 0, 0, 0);
 }