From 7a3f53ba446ae2600763ee37b7f8dcc91de3ec5f Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 2 Aug 2015 21:51:41 -0500 Subject: Mark command-local functions static. --- toys/other/tac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other/tac.c') diff --git a/toys/other/tac.c b/toys/other/tac.c index 538d1b0b..d5f72fd2 100644 --- a/toys/other/tac.c +++ b/toys/other/tac.c @@ -15,7 +15,7 @@ config TAC #include "toys.h" -void do_tac(int fd, char *name) +static void do_tac(int fd, char *name) { struct arg_list *list = NULL; char *c; -- cgit v1.2.3