math: fix exp.s on i386 and x86_64 so the exception flags are correct
[musl] / src / time / ctime_r.c
1 #include <time.h>
2
3 char *ctime_r(const time_t *t, char *buf)
4 {
5         struct tm tm;
6         localtime_r(t, &tm);
7         return asctime_r(&tm, buf);
8 }