Chromium Code Reviews| Index: fusl/src/time/asctime_r.c |
| diff --git a/fusl/src/time/asctime_r.c b/fusl/src/time/asctime_r.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7dfbb1210371b3d281b81f0bf443a6337a41eee0 |
| --- /dev/null |
| +++ b/fusl/src/time/asctime_r.c |
| @@ -0,0 +1,8 @@ |
| +#include <time.h> |
| + |
| +char *__asctime(const struct tm *restrict, char *restrict); |
| + |
| +char *asctime_r(const struct tm *restrict tm, char *restrict buf) |
| +{ |
| + return __asctime(tm, buf); |
| +} |