diff options
Diffstat (limited to 'toys/posix/date.c')
-rw-r--r-- | toys/posix/date.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |