diff options
-rw-r--r-- | src/rototiller.c | 6 |
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; |