move fallocate64 declaration under _LARGEFILE64_SOURCE feature test
[musl] / compat / time32 / ctime32_r.c
1 #include "time32.h"
2 #include <time.h>
3
4 char *__ctime32_r(time32_t *t, char *buf)
5 {
6         return ctime_r(&(time_t){*t}, buf);
7 }