aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/cd9660/cd9660_node.c
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
committerEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
commit303b270b0a55fd0dc287afb82267317ca7826a7b (patch)
tree82f7f30caed0917853b890f61d2857d27c2e02e3 /sys/fs/cd9660/cd9660_node.c
parent645c4be38a40ae297fc27d00d66da5599fe60eb6 (diff)
downloadsrc-303b270b0a55fd0dc287afb82267317ca7826a7b.tar.gz
src-303b270b0a55fd0dc287afb82267317ca7826a7b.zip
Staticize.
Notes
Notes: svn path=/head/; revision=33181
Diffstat (limited to 'sys/fs/cd9660/cd9660_node.c')
-rw-r--r--sys/fs/cd9660/cd9660_node.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c
index 7220d1e615f5..a7a971bffd1f 100644
--- a/sys/fs/cd9660/cd9660_node.c
+++ b/sys/fs/cd9660/cd9660_node.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94
- * $Id: cd9660_node.c,v 1.23 1998/02/04 22:32:29 eivind Exp $
+ * $Id: cd9660_node.c,v 1.24 1998/02/06 12:13:20 eivind Exp $
*/
#include <sys/param.h>
@@ -55,10 +55,10 @@
/*
* Structures associated with iso_node caching.
*/
-struct iso_node **isohashtbl;
-u_long isohash;
+static struct iso_node **isohashtbl;
+static u_long isohash;
#define INOHASH(device, inum) (((device) + ((inum)>>12)) & isohash)
-struct simplelock cd9660_ihash_slock;
+static struct simplelock cd9660_ihash_slock;
static void cd9660_ihashrem __P((struct iso_node *));
static unsigned cd9660_chars2ui __P((unsigned char *begin, int len));