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/posix/date.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/date.c') diff --git a/toys/posix/date.c b/toys/posix/date.c index d4c4524b..3093f815 100644 --- a/toys/posix/date.c +++ b/toys/posix/date.c @@ -53,7 +53,7 @@ GLOBALS( // Handle default posix date format: mmddhhmm[[cc]yy] // returns 0 success, nonzero for error -int parse_posixdate(char *str, struct tm *tm) +static int parse_posixdate(char *str, struct tm *tm) { int len; -- cgit v1.2.3