Make non-static function definitions match static declarations
Just to avoid confusion.
This commit is contained in:
parent
5dcd748f9d
commit
d1b801b90b
3 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue