remove __SYSCALL_SSLEN arch macro in favor of using public _NSIG
[musl] / src / time / ctime.c
1 #include <time.h>
2
3 char *ctime(const time_t *t)
4 {
5         return asctime(localtime(t));
6 }