summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-28 04:15:19 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-28 04:15:19 -0800
commit788cace2cb783db0b4df6338f89e6b026ae23e9b (patch)
tree62ef4b70c7631651f90da8af58c78bfe7877f454 /hash.c
parentec1f42927b870770d77aa196bdf7adfff4475210 (diff)
downloadtxr-788cace2cb783db0b4df6338f89e6b026ae23e9b.tar.gz
txr-788cace2cb783db0b4df6338f89e6b026ae23e9b.tar.bz2
txr-788cace2cb783db0b4df6338f89e6b026ae23e9b.zip
Code cleanup. All private functions static. Private stuff
in regex module not exposed in header. Etc.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hash.c b/hash.c
index cc0e79f1..66666c81 100644
--- a/hash.c
+++ b/hash.c
@@ -128,17 +128,17 @@ val hash_obj(val obj)
return num(ll_hash(obj));
}
-val hash_equal(val self, val other)
+static val hash_equal(val self, val other)
{
return self == other ? t : nil;
}
-void hash_destroy(val hash)
+static void hash_destroy(val hash)
{
free(hash->co.handle);
}
-void hash_mark(val hash)
+static void hash_mark(val hash)
{
struct hash *h = (struct hash *) hash->co.handle;
cnum i;
@@ -194,7 +194,7 @@ static struct cobj_ops hash_ops = {
0
};
-void hash_grow(struct hash *h)
+static void hash_grow(struct hash *h)
{
cnum i;
cnum new_modulus = 2 * h->modulus;