From 7146b9c2a253c5c51d7935bae8725232ef276cdf Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 6 Dec 2018 01:32:41 -0800 Subject: rototiller: make some local helpers static --- src/rototiller.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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; -- cgit v1.2.3