]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Make functions local to parse.c static.
authorjsm <jsm@NetBSD.org>
Sun, 24 Sep 2000 09:46:28 +0000 (09:46 +0000)
committerjsm <jsm@NetBSD.org>
Sun, 24 Sep 2000 09:46:28 +0000 (09:46 +0000)
battlestar/extern.h
battlestar/parse.c

index ac85e7193f6e5a64356ee1bd65f72a2417c92ad9..811ef051151a63e6f9edf680730b0b85db14ae3a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.23 2000/09/24 09:44:28 jsm Exp $ */
+/*     $NetBSD: extern.h,v 1.24 2000/09/24 09:46:28 jsm Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -337,16 +337,13 @@ int follow __P((void));
 char *getcom __P((char *, int, const char *, const char *));
 char *getword __P((char *, char *, int));
 int give __P((void));
-int hash __P((const char *));
 void initialize __P((const char *));
-void install __P((struct wlist *));
 int jump __P((void));
 void kiss __P((void));
 int land __P((void));
 int launch __P((void));
 void light __P((void));
 void live __P((void)) __attribute__((__noreturn__));
-struct wlist *lookup __P((const char *));
 void love __P((void));
 int moveplayer __P((int, int));
 void murder __P((void));
index 46a51a0bed33944b00022d89c417657b76d7edf0..75c54e23b2de4bd8d76a6ba91af06b1ba33ac439 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.9 2000/09/22 08:19:21 jsm Exp $    */
+/*     $NetBSD: parse.c,v 1.10 2000/09/24 09:46:28 jsm Exp $   */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)parse.c    8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: parse.c,v 1.9 2000/09/22 08:19:21 jsm Exp $");
+__RCSID("$NetBSD: parse.c,v 1.10 2000/09/24 09:46:28 jsm Exp $");
 #endif
 #endif                         /* not lint */
 
 #include "extern.h"
 
+static int hash __P((const char *));
+static void install __P((struct wlist *));
+static struct wlist *lookup __P((const char *));
+
 void
 wordinit()
 {
@@ -53,7 +57,7 @@ wordinit()
                install(w);
 }
 
-int
+static int
 hash(s)
        const char   *s;
 {
@@ -67,7 +71,7 @@ hash(s)
        return hashval;
 }
 
-struct wlist *
+static struct wlist *
 lookup(s)
        const char   *s;
 {
@@ -79,7 +83,7 @@ lookup(s)
        return NULL;
 }
 
-void
+static void
 install(wp)
        struct wlist *wp;
 {