remove uneeded function decls
authorjsg <jsg@openbsd.org>
Wed, 6 Sep 2023 11:53:56 +0000 (11:53 +0000)
committerjsg <jsg@openbsd.org>
Wed, 6 Sep 2023 11:53:56 +0000 (11:53 +0000)
ok tb@

games/hack/hack.c
games/hack/hack.do_name.c
games/hack/hack.main.c
games/hack/hack.makemon.c
games/hack/hack.objnam.c
games/hack/hack.unix.c

index 640ff23..298da18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hack.c,v 1.11 2016/01/10 15:12:20 mestre Exp $        */
+/*     $OpenBSD: hack.c,v 1.12 2023/09/06 11:53:56 jsg Exp $   */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -69,7 +69,6 @@
 #include "hack.h"
 
 extern char *nomovemsg;
-extern char *exclam();
 
 static void movobj(struct obj *, int, int);
 #ifdef QUEST
index 07d928f..1f75a2c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hack.do_name.c,v 1.11 2016/01/09 18:33:15 mestre Exp $        */
+/*     $OpenBSD: hack.do_name.c,v 1.12 2023/09/06 11:53:56 jsg Exp $   */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -118,7 +118,6 @@ do_mname(void)
        coord cc;
        int cx,cy,lth,i;
        struct monst *mtmp, *mtmp2;
-       extern char *lmonnam();
 
        cc = getpos(0, "the monster you want to name");
        cx = cc.x;
index 96382aa..1a44c16 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hack.main.c,v 1.25 2023/06/03 15:19:38 op Exp $       */
+/*     $OpenBSD: hack.main.c,v 1.26 2023/09/06 11:53:56 jsg Exp $      */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -350,7 +350,6 @@ not_recovered:
 
                        if(moves%2 == 0 ||
                          (!(Fast & ~INTRINSIC) && (!Fast || rn2(3)))) {
-                               extern struct monst *makemon();
                                movemon();
                                if(!rn2(70))
                                    (void) makemon((struct permonst *)0, 0, 0);
index e607b6d..9143b75 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hack.makemon.c,v 1.8 2016/01/09 18:33:15 mestre Exp $ */
+/*     $OpenBSD: hack.makemon.c,v 1.9 2023/09/06 11:53:56 jsg Exp $    */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -64,7 +64,6 @@
 #include "hack.h"
 
 extern char fut_geno[];
-extern struct obj *mkobj_at();
 struct monst zeromonst;
 
 /*
index a6e19dc..fd2316d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hack.objnam.c,v 1.11 2016/01/09 18:33:15 mestre Exp $ */
+/*     $OpenBSD: hack.objnam.c,v 1.12 2023/09/06 11:53:56 jsg Exp $    */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -609,7 +609,6 @@ any:
        typ = probtype(let);
 typfnd:
        { struct obj *otmp;
-         extern struct obj *mksobj();
        let = objects[typ].oc_olet;
        otmp = mksobj(typ);
        if(heavy)
index 039ef93..117c6ae 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hack.unix.c,v 1.22 2023/06/03 15:19:38 op Exp $       */
+/*     $OpenBSD: hack.unix.c,v 1.23 2023/09/06 11:53:56 jsg Exp $      */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -97,7 +97,6 @@ static struct tm *
 getlt(void)
 {
        time_t date;
-       struct tm *localtime();
 
        (void) time(&date);
        return(localtime(&date));