Browse Source

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

Meco Jianting Man 4 years ago
parent
commit
82f2d8e53d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/libc/compilers/common/time.c

+ 1 - 1
components/libc/compilers/common/time.c

@@ -270,7 +270,7 @@ char* asctime(const struct tm *timeptr)
 }
 }
 RTM_EXPORT(asctime);
 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;
     struct tm tm;
     return asctime_r(localtime_r(tim_p, &tm), result);
     return asctime_r(localtime_r(tim_p, &tm), result);