time.c 删除函数名与括号之间的空格
This commit is contained in:
parent
850e1aeb52
commit
82f2d8e53d
|
@ -270,7 +270,7 @@ char* asctime(const struct tm *timeptr)
|
|||
}
|
||||
RTM_EXPORT(asctime);
|
||||
|
||||
char *ctime_r (const time_t * tim_p, char * result)
|
||||
char *ctime_r(const time_t * tim_p, char * result)
|
||||
{
|
||||
struct tm tm;
|
||||
return asctime_r(localtime_r(tim_p, &tm), result);
|
||||
|
|
Loading…
Reference in New Issue