Make non-static function definitions match static declarations

Just to avoid confusion.
This commit is contained in:
Markus Armbruster 2009-03-22 17:47:14 +01:00
parent 5dcd748f9d
commit d1b801b90b
3 changed files with 5 additions and 5 deletions

View file

@ -142,7 +142,7 @@ weekday(char *str, int *wday)
* Else return NULL.
* Time format is HOUR:MINUTE. Initial whitespace is ignored.
*/
char *
static char *
daytime(char *str, int *min)
{
/*
@ -177,7 +177,7 @@ daytime(char *str, int *min)
* Else return NULL.
* Format is HOUR:MINUTE-HOUR:MINUTE. Initial whitespace is ignored.
*/
char *
static char *
daytime_range(char *str, int *from_min, int *to_min)
{
char *end;