| Index: fusl/src/time/asctime.c
|
| diff --git a/fusl/src/time/asctime.c b/fusl/src/time/asctime.c
|
| index 3102eb87388c0dea83cd01b115ee15a392e9a6a8..eea793d59536dfad6111e6e3bfcca86df1d69789 100644
|
| --- a/fusl/src/time/asctime.c
|
| +++ b/fusl/src/time/asctime.c
|
| @@ -1,9 +1,8 @@
|
| #include <time.h>
|
|
|
| -char *__asctime(const struct tm *, char *);
|
| +char* __asctime(const struct tm*, char*);
|
|
|
| -char *asctime(const struct tm *tm)
|
| -{
|
| - static char buf[26];
|
| - return __asctime(tm, buf);
|
| +char* asctime(const struct tm* tm) {
|
| + static char buf[26];
|
| + return __asctime(tm, buf);
|
| }
|
|
|