summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-02-17 02:32:53 +0100
committerPixel <pixel@nobis-crew.org>2009-02-17 02:32:53 +0100
commit7014696a982451f4af8903b8da8b915cdcbdf632 (patch)
tree483381d4841042201ad5bf0d47078632aae9ef6b
parentffe1fca0cc4cac3213c048933314f4f4057e5991 (diff)
This function is static.
-rw-r--r--stalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stalloc.c b/stalloc.c
index 27e3288..0b9530c 100644
--- a/stalloc.c
+++ b/stalloc.c
@@ -17,7 +17,7 @@ static int create_pool() {
return nb_pools - 1;
}
-int search_pool(size_t s) {
+static int search_pool(size_t s) {
int i;
// This algorithm could use a little bit more of cleverness, but... *shrug*