generalize mips-specific reloc code not to hard-code sym/type encoding
[musl.git] / src / time / asctime.c
blob3102eb87388c0dea83cd01b115ee15a392e9a6a8
1 #include <time.h>
3 char *__asctime(const struct tm *, char *);
5 char *asctime(const struct tm *tm)
7 static char buf[26];
8 return __asctime(tm, buf);