Index: fusl/src/time/ctime_r.c |
diff --git a/fusl/src/time/ctime_r.c b/fusl/src/time/ctime_r.c |
index d2260a165a2e88112f0c74e5f2d13628af09e2ff..e1d32bdeccbc80f9ff1a5ad916cc2d92853ff3a1 100644 |
--- a/fusl/src/time/ctime_r.c |
+++ b/fusl/src/time/ctime_r.c |
@@ -1,8 +1,7 @@ |
#include <time.h> |
-char *ctime_r(const time_t *t, char *buf) |
-{ |
- struct tm tm; |
- localtime_r(t, &tm); |
- return asctime_r(&tm, buf); |
+char* ctime_r(const time_t* t, char* buf) { |
+ struct tm tm; |
+ localtime_r(t, &tm); |
+ return asctime_r(&tm, buf); |
} |