summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2018-12-06 01:32:41 -0800
committerVito Caputo <vcaputo@pengaru.com>2018-12-06 01:32:41 -0800
commit7146b9c2a253c5c51d7935bae8725232ef276cdf (patch)
tree81f00a7934292c3f27ec98b9f7c6ce4532b92cf3 /src
parent3f17851a16a4f2d8f6c13d225aee7a822e929a20 (diff)
rototiller: make some local helpers static
Diffstat (limited to 'src')
-rw-r--r--src/rototiller.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rototiller.c b/src/rototiller.c
index e4c818b..45bde84 100644
--- a/src/rototiller.c
+++ b/src/rototiller.c
@@ -50,7 +50,7 @@ static rototiller_module_t *modules[] = {
};
-rototiller_module_t * module_lookup(const char *name)
+static rototiller_module_t * module_lookup(const char *name)
{
unsigned i;
@@ -102,7 +102,7 @@ typedef struct argv_t {
* ./rototiller --module=roto,foo=bar,module=settings
* ./rototiller --defaults
*/
-int parse_argv(int argc, const char *argv[], argv_t *res_args)
+static int parse_argv(int argc, const char *argv[], argv_t *res_args)
{
int i;
@@ -337,7 +337,7 @@ typedef struct rototiller_t {
fb_t *fb;
} rototiller_t;
-void * rototiller_thread(void *_rt)
+static void * rototiller_thread(void *_rt)
{
rototiller_t *rt = _rt;
© All Rights Reserved