Forráskód Böngészése

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

Meco Jianting Man 4 éve
szülő
commit
82f2d8e53d
1 módosított fájl, 1 hozzáadás és 1 törlés
  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);
 
-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);