]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
remove redundant decls.
authorchristos <christos@NetBSD.org>
Mon, 5 Feb 2001 01:10:08 +0000 (01:10 +0000)
committerchristos <christos@NetBSD.org>
Mon, 5 Feb 2001 01:10:08 +0000 (01:10 +0000)
20 files changed:
sail/assorted.c
sail/dr_1.c
sail/dr_2.c
sail/dr_3.c
sail/dr_4.c
sail/dr_5.c
sail/dr_main.c
sail/game.c
sail/lo_main.c
sail/misc.c
sail/parties.c
sail/pl_1.c
sail/pl_2.c
sail/pl_3.c
sail/pl_4.c
sail/pl_5.c
sail/pl_6.c
sail/pl_7.c
sail/pl_main.c
sail/sync.c

index 38ec6982c0ed3074de70c88f01163685634960d7..a03b12e5db0d7697c8591e82fba2c5128948f9ae 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: assorted.c,v 1.13 2001/01/04 06:16:51 jwise Exp $      */
+/*     $NetBSD: assorted.c,v 1.14 2001/02/05 01:10:08 christos Exp $   */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)assorted.c 8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: assorted.c,v 1.13 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: assorted.c,v 1.14 2001/02/05 01:10:08 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -46,8 +46,6 @@ __RCSID("$NetBSD: assorted.c,v 1.13 2001/01/04 06:16:51 jwise Exp $");
 #include <err.h>
 #include "extern.h"
 
-void   table(struct ship *, struct ship *, int, int, int, int);
-void   Cleansnag(struct ship *, struct ship *, int, int);
 static void    strike (struct ship *, struct ship *);
 
 void
index 2b320382c481386bb9e9e9e3ca3b3a35c5cac0a5..782d8d55713d3e6c8eaad5ef23f7c2fea63b6bcd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dr_1.c,v 1.17 2001/01/04 06:16:51 jwise Exp $  */
+/*     $NetBSD: dr_1.c,v 1.18 2001/02/05 01:10:08 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)dr_1.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: dr_1.c,v 1.17 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: dr_1.c,v 1.18 2001/02/05 01:10:08 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -49,12 +49,7 @@ __RCSID("$NetBSD: dr_1.c,v 1.17 2001/01/04 06:16:51 jwise Exp $");
 #include "extern.h"
 #include "driver.h"
 
-void   unfoul(void);
-void   boardcomp(void);
 static int     fightitout(struct ship *, struct ship *, int);
-void   resolve(void);
-void   compcombat(void);
-int    next(void);
 
 void
 unfoul(void)
index e464a0f001fec8871a9386767e1e1c2d8faa7833..3eb96ab26a23c2b5cb4f454205b4d3c2f1cd18e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dr_2.c,v 1.17 2001/01/04 06:16:51 jwise Exp $  */
+/*     $NetBSD: dr_2.c,v 1.18 2001/02/05 01:10:08 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)dr_2.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: dr_2.c,v 1.17 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: dr_2.c,v 1.18 2001/02/05 01:10:08 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -50,11 +50,7 @@ __RCSID("$NetBSD: dr_2.c,v 1.17 2001/01/04 06:16:51 jwise Exp $");
 
 #define couldwin(f,t) (f->specs->crew2 > t->specs->crew2 * 1.5)
 
-void   thinkofgrapples(void);
-void   checkup(void);
-void   prizecheck(void);
 static int     str_end(const char *);
-void   closeon(struct ship *, struct ship *, char *, int, int, int);
 static int     score(struct ship *, struct ship *, char *, int);
 static void    move_ship(struct ship *, const char *, unsigned char *, short *, short *, char *);
 static void    try(struct ship *, struct ship *, char *, char *, int, int, int, int, int, int *, int);
index 36deff0806741ffd1bc378d34c801b7e1daad2c0..22404c7afd431e06930550313bd2a84ec9ac2e0e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dr_3.c,v 1.13 2001/01/04 06:16:51 jwise Exp $  */
+/*     $NetBSD: dr_3.c,v 1.14 2001/02/05 01:10:09 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)dr_3.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: dr_3.c,v 1.13 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: dr_3.c,v 1.14 2001/02/05 01:10:09 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -47,15 +47,10 @@ __RCSID("$NetBSD: dr_3.c,v 1.13 2001/01/04 06:16:51 jwise Exp $");
 #include "extern.h"
 #include "driver.h"
 
-void   moveall(void);
 static int     stillmoving(int);
 static int     is_isolated(struct ship *);
 static int     push(struct ship *, struct ship *);
 static void    step(struct ship *, int,  char *);
-void   sendbp(struct ship *, struct ship *, int, int);
-int    is_toughmelee(struct ship *, struct ship *, int, int);
-void   reload(void);
-void   checksails(void);
 
 /* move all comp ships */
 void
index c29cc80e1f902b2be453e025de38668711ea4ba2..664a409e09adc5ef02cf7dad4aaffbef53129637 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dr_4.c,v 1.11 2001/01/04 03:21:17 jwise Exp $  */
+/*     $NetBSD: dr_4.c,v 1.12 2001/02/05 01:10:09 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)dr_4.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: dr_4.c,v 1.11 2001/01/04 03:21:17 jwise Exp $");
+__RCSID("$NetBSD: dr_4.c,v 1.12 2001/02/05 01:10:09 christos Exp $");
 #endif
 #endif /* not lint */
 
 #include <stdlib.h>
 #include "extern.h"
 
-void   ungrap(struct ship *, struct ship *);
-void   grap(struct ship *, struct ship *);
-
 void
 ungrap(struct ship *from, struct ship *to)
 {
index 8f6a1f5d9f135863430a02652c0c2933a9fc9c85..93d630a18975920f8b6ee958eb628744af4577a9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dr_5.c,v 1.10 2001/01/04 06:16:51 jwise Exp $  */
+/*     $NetBSD: dr_5.c,v 1.11 2001/02/05 01:10:09 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)dr_5.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: dr_5.c,v 1.10 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: dr_5.c,v 1.11 2001/02/05 01:10:09 christos Exp $");
 #endif
 #endif /* not lint */
 
 #include <sys/types.h>
 #include "extern.h"
 
-void   subtract(struct ship *, struct ship *, int, int *, int);
-int    mensent(struct ship *, struct ship *, int *, struct ship **, int *, int);
-
 void
 subtract(struct ship *from, struct ship *fromcap, int totalfrom, int *crewfrom, int pcfrom)
 {
index 2366a8b3def3807f720109d25a1be9954d5f6237..c3f145d724e6cc7910f1d3d11a8f790cb3159282 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: dr_main.c,v 1.10 2001/01/04 03:51:24 jwise Exp $       */
+/*     $NetBSD: dr_main.c,v 1.11 2001/02/05 01:10:09 christos Exp $    */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)dr_main.c  8.2 (Berkeley) 4/16/94";
 #else
-__RCSID("$NetBSD: dr_main.c,v 1.10 2001/01/04 03:51:24 jwise Exp $");
+__RCSID("$NetBSD: dr_main.c,v 1.11 2001/02/05 01:10:09 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -49,8 +49,6 @@ __RCSID("$NetBSD: dr_main.c,v 1.10 2001/01/04 03:51:24 jwise Exp $");
 #include "extern.h"
 #include "driver.h"
 
-int    dr_main(void);
-
 int
 dr_main(void)
 {
index 0f74cd194b3adf6b1b9f5da0147f7b45d7ab12cb..087ab9c0275fde0843c1ed7c9a9b63b75e805311 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: game.c,v 1.9 2001/01/04 03:51:24 jwise Exp $   */
+/*     $NetBSD: game.c,v 1.10 2001/02/05 01:10:09 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)game.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: game.c,v 1.9 2001/01/04 03:51:24 jwise Exp $");
+__RCSID("$NetBSD: game.c,v 1.10 2001/02/05 01:10:09 christos Exp $");
 #endif
 #endif /* not lint */
 
 #include <sys/types.h>
 #include "extern.h"
 
-int    maxturns(struct ship *, char *);
-int    maxmove(struct ship *, int, int);
-
 int
 maxturns(struct ship *ship, char *af)
 {
index 71ea1a49eeb4032fe676426d29fc3e2d2f14135e..38ff0579b35bc9cf417d1df0e3ea305a5542c567 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: lo_main.c,v 1.10 2001/01/16 02:44:43 cgd Exp $ */
+/*     $NetBSD: lo_main.c,v 1.11 2001/02/05 01:10:10 christos Exp $    */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)lo_main.c  8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: lo_main.c,v 1.10 2001/01/16 02:44:43 cgd Exp $");
+__RCSID("$NetBSD: lo_main.c,v 1.11 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -54,8 +54,6 @@ __RCSID("$NetBSD: lo_main.c,v 1.10 2001/01/16 02:44:43 cgd Exp $");
 #include "extern.h"
 #include "pathnames.h"
 
-int    lo_main(void);
-
 const char *const title[] = {
        "Admiral", "Commodore", "Captain", "Captain",
        "Captain", "Captain", "Captain", "Commander",
index 45e0da1d53160f122a1f62b49bc401326fa32f72..91a9e6edc71f2af9c390fddf7bae5363a0e2c3b7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: misc.c,v 1.11 2001/01/04 06:33:18 itojun Exp $ */
+/*     $NetBSD: misc.c,v 1.12 2001/02/05 01:10:10 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)misc.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: misc.c,v 1.11 2001/01/04 06:33:18 itojun Exp $");
+__RCSID("$NetBSD: misc.c,v 1.12 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -51,13 +51,7 @@ __RCSID("$NetBSD: misc.c,v 1.11 2001/01/04 06:33:18 itojun Exp $");
 
 #define distance(x,y) (abs(x) >= abs(y) ? abs(x) + abs(y)/2 : abs(y) + abs(x)/2)
 
-int    range(struct ship *, struct ship *);
-struct ship    *closestenemy(struct ship *, int, int);
 static int     angle(int, int);
-int    gunsbear(struct ship *, struct ship *);
-int    portside(struct ship *, struct ship *, int);
-int    colours(struct ship *);
-void   logger(struct ship *);
 
 /* XXX */
 int
index c41d37af7b0f0d38afc04497278a8585d3c12a45..582e78448032adfa3bbb4252af1d0b5a499fda83 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: parties.c,v 1.9 2001/01/04 03:51:24 jwise Exp $        */
+/*     $NetBSD: parties.c,v 1.10 2001/02/05 01:10:10 christos Exp $    */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)parties.c  8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: parties.c,v 1.9 2001/01/04 03:51:24 jwise Exp $");
+__RCSID("$NetBSD: parties.c,v 1.10 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
 #include <sys/types.h>
 #include "extern.h"
 
-int    meleeing(struct ship *, struct ship *);
-int    boarding(struct ship *, int);
-void   unboard(struct ship *, struct ship *, int);
-
 int
 meleeing(struct ship *from, struct ship *to)
 {
index c99d76bcef9b4928ce54d8e145ec90536de2c23f..3397ddfced76cf4e2cf0586809c6f2297795cd12 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_1.c,v 1.15 2001/01/16 02:44:43 cgd Exp $    */
+/*     $NetBSD: pl_1.c,v 1.16 2001/02/05 01:10:10 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_1.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_1.c,v 1.15 2001/01/16 02:44:43 cgd Exp $");
+__RCSID("$NetBSD: pl_1.c,v 1.16 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -51,10 +51,6 @@ __RCSID("$NetBSD: pl_1.c,v 1.15 2001/01/16 02:44:43 cgd Exp $");
 #include "extern.h"
 #include "player.h"
 
-void   leave(int) __attribute__((__noreturn__));
-void   choke(int) __attribute__((__noreturn__));
-void   child(int);
-
 /*
  * If we get here before a ship is chosen, then ms == 0 and
  * we don't want to update the score file, or do any Write's either.
index 850dd98cf565de28c4444c0403131684b0333a6b..e893726edfede3f9bd08b09ec9a3f39c0777f7db 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_2.c,v 1.9 2001/01/04 05:34:56 jwise Exp $   */
+/*     $NetBSD: pl_2.c,v 1.10 2001/02/05 01:10:10 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_2.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_2.c,v 1.9 2001/01/04 05:34:56 jwise Exp $");
+__RCSID("$NetBSD: pl_2.c,v 1.10 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -46,8 +46,6 @@ __RCSID("$NetBSD: pl_2.c,v 1.9 2001/01/04 05:34:56 jwise Exp $");
 #include "extern.h"
 #include "player.h"
 
-void   play(void)  __attribute__((__noreturn__));
-
 void
 play(void)
 {
index 206c7654ec6f2bf7f3e7d889a981e791e12967e2..52c6e880241108bd3c1118e769ed4e2a3ca3cd94 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_3.c,v 1.15 2001/01/04 06:16:51 jwise Exp $  */
+/*     $NetBSD: pl_3.c,v 1.16 2001/02/05 01:10:10 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_3.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_3.c,v 1.15 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: pl_3.c,v 1.16 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -47,10 +47,6 @@ __RCSID("$NetBSD: pl_3.c,v 1.15 2001/01/04 06:16:51 jwise Exp $");
 #include "extern.h"
 #include "player.h"
 
-void   acceptcombat(void);
-void   grapungrap(void);
-void   unfoulplayer(void);
-
 void
 acceptcombat(void)
 {
index 7931991bbfb349a65bf5bdf6c171361164160cf2..affc39f8d00e68cd95763148cdefd962f9bbb19a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_4.c,v 1.12 2001/01/04 04:41:41 jwise Exp $  */
+/*     $NetBSD: pl_4.c,v 1.13 2001/02/05 01:10:11 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_4.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_4.c,v 1.12 2001/01/04 04:41:41 jwise Exp $");
+__RCSID("$NetBSD: pl_4.c,v 1.13 2001/02/05 01:10:11 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -47,12 +47,6 @@ __RCSID("$NetBSD: pl_4.c,v 1.12 2001/01/04 04:41:41 jwise Exp $");
 #include "extern.h"
 #include "player.h"
 
-void   changesail(void);
-void   acceptsignal(void);
-void   lookout(void);
-const char     *saywhat(struct ship *, int);
-void   eyeball(struct ship *);
-
 void
 changesail(void)
 {
index 18ecf0c9807cac4948d261b7f8ea17d41e899b37..44c37c22da6f889dabc12b7b4a03ff259741a84c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_5.c,v 1.14 2001/01/04 06:33:18 itojun Exp $ */
+/*     $NetBSD: pl_5.c,v 1.15 2001/02/05 01:10:11 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_5.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_5.c,v 1.14 2001/01/04 06:33:18 itojun Exp $");
+__RCSID("$NetBSD: pl_5.c,v 1.15 2001/02/05 01:10:11 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -53,8 +53,6 @@ __RCSID("$NetBSD: pl_5.c,v 1.14 2001/01/04 06:33:18 itojun Exp $");
 
 #define turnfirst(x) (*x == 'r' || *x == 'l')
 
-void   acceptmove(void);
-void   acceptboard(void);
 static void    parties(struct ship *, int *, int, int);
 
 void
index d22311f8a1d9ddad421fc6068a063f0439a9b03d..f45ea106bfab0e86aea848cdaf60ea8d7b273104 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_6.c,v 1.9 2001/01/04 04:41:42 jwise Exp $   */
+/*     $NetBSD: pl_6.c,v 1.10 2001/02/05 01:10:11 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_6.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_6.c,v 1.9 2001/01/04 04:41:42 jwise Exp $");
+__RCSID("$NetBSD: pl_6.c,v 1.10 2001/02/05 01:10:11 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -46,9 +46,7 @@ __RCSID("$NetBSD: pl_6.c,v 1.9 2001/01/04 04:41:42 jwise Exp $");
 #include "extern.h"
 #include "player.h"
 
-void   repair(void);
 static int     turned(void);
-void   loadplayer(void);
 
 void
 repair(void)
index 5071eeb2406e286d4f06635d00c1a66a6ff4edf1..1660761f4f07f8d249845db2f60b839831957d12 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_7.c,v 1.23 2001/01/16 02:44:43 cgd Exp $    */
+/*     $NetBSD: pl_7.c,v 1.24 2001/02/05 01:10:11 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_7.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_7.c,v 1.23 2001/01/16 02:44:43 cgd Exp $");
+__RCSID("$NetBSD: pl_7.c,v 1.24 2001/02/05 01:10:11 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -53,29 +53,8 @@ __RCSID("$NetBSD: pl_7.c,v 1.23 2001/01/16 02:44:43 cgd Exp $");
 #include "player.h"
 #include "display.h"
 
-void   initscreen(void);
-void   cleanupscreen(void);
-void   newturn(int);
-void   Signal(const char *, struct ship *, ...)
-               __attribute__((__format__(__printf__,1,3)));
-void   Msg(const char *, ...)
-               __attribute__((__format__(__printf__,1,2)));
 static void    Scroll(void);
-void   prompt(const char *, struct ship *);
 static void    endprompt(int);
-int    sgetch(const char *, struct ship *, int);
-void   sgetstr(const char *, char *, int);
-void   draw_screen(void);
-void   draw_view(void);
-void   draw_turn(void);
-void   draw_stat(void);
-void   draw_slot(void);
-void   draw_board(void);
-void   centerview(void);
-void   upview(void);
-void   downview(void);
-void   leftview(void);
-void   rightview(void);
 static void    adjustview(void);
 
 /*
index 397b90462012333dc2982978dff30b72a539703f..85fd88eae543318c940799936345bc7401986daf 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_main.c,v 1.14 2001/01/04 04:41:42 jwise Exp $       */
+/*     $NetBSD: pl_main.c,v 1.15 2001/02/05 01:10:11 christos Exp $    */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_main.c  8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_main.c,v 1.14 2001/01/04 04:41:42 jwise Exp $");
+__RCSID("$NetBSD: pl_main.c,v 1.15 2001/02/05 01:10:11 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -52,7 +52,6 @@ __RCSID("$NetBSD: pl_main.c,v 1.14 2001/01/04 04:41:42 jwise Exp $");
 #include "player.h"
 #include "restart.h"
 
-int    pl_main(void);
 static void    initialize(void);
 
 /*ARGSUSED*/
index b60b19f035595144bc256cc8c0986825d00522c9..eb774a6e873572f16aa91584d8c2f0c24452cf09 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: sync.c,v 1.19 2001/01/04 05:34:56 jwise Exp $  */
+/*     $NetBSD: sync.c,v 1.20 2001/02/05 01:10:11 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)sync.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: sync.c,v 1.19 2001/01/04 05:34:56 jwise Exp $");
+__RCSID("$NetBSD: sync.c,v 1.20 2001/02/05 01:10:11 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -56,17 +56,6 @@ __RCSID("$NetBSD: sync.c,v 1.19 2001/01/04 05:34:56 jwise Exp $");
 
 #define BUFSIZE 4096
 
-void   fmtship(char *, size_t, const char *, struct ship *);
-void   makesignal(struct ship *, const char *, struct ship *, ...)
-               __attribute__((__format__(__printf__,2,4)));
-void   makemsg(struct ship *, const char *, ...)
-               __attribute__((__format__(__printf__,2,3)));
-int    sync_exists(int);
-int    sync_open(void);
-void   sync_close(int);
-void   Write(int, struct ship *, long, long, long, long);
-void   Writestr(int, struct ship *, const char *);
-int    Sync(void);
 static int     sync_update(int, struct ship *, const char *, long, long, long, long);
 
 static const char SF[] = _PATH_SYNC;