time.c 删除函数名与括号之间的空格

This commit is contained in:
Meco Jianting Man 2021-04-29 00:21:10 +08:00 committed by GitHub
parent 850e1aeb52
commit 82f2d8e53d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);