summaryrefslogtreecommitdiffstats
path: root/lib/resource.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-05-24 16:46:20 +0200
committerMartin Mares <mj@ucw.cz>1998-05-24 16:46:20 +0200
commitd4bc8dc00037e868771fb259a1e7b9ae5e92ed5a (patch)
treea0e2b60de2823ce7c3fd1c3fa269d7fe8bcacfb9 /lib/resource.c
parent315aba32b3c5744a040331d653218d15a55455a5 (diff)
downloadbird-d4bc8dc00037e868771fb259a1e7b9ae5e92ed5a.tar
bird-d4bc8dc00037e868771fb259a1e7b9ae5e92ed5a.zip
Staticized some variables and functions.
Diffstat (limited to 'lib/resource.c')
-rw-r--r--lib/resource.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/resource.c b/lib/resource.c
index 2806a90..fe879cf 100644
--- a/lib/resource.c
+++ b/lib/resource.c
@@ -17,8 +17,8 @@ struct pool {
list inside;
};
-void pool_dump(resource *);
-void pool_free(resource *);
+static void pool_dump(resource *);
+static void pool_free(resource *);
static struct resclass pool_class = {
"Pool",
@@ -39,7 +39,7 @@ rp_new(pool *p)
return z;
}
-void
+static void
pool_free(resource *P)
{
pool *p = (pool *) P;
@@ -54,7 +54,7 @@ pool_free(resource *P)
}
}
-void
+static void
pool_dump(resource *P)
{
pool *p = (pool *) P;
@@ -125,18 +125,18 @@ struct mblock {
byte data[0];
};
-void mbl_free(resource *r)
+static void mbl_free(resource *r)
{
}
-void mbl_debug(resource *r)
+static void mbl_debug(resource *r)
{
struct mblock *m = (struct mblock *) r;
debug("(size=%d)\n", m->size);
}
-struct resclass mb_class = {
+static struct resclass mb_class = {
"Memory",
0,
mbl_free,