xref: /haiku/src/system/libroot/posix/musl/time/asctime.c (revision 23486c0db38c77d56b3e4405ec794ec316085cfc)
1 #include <time.h>
2 
3 char *asctime(const struct tm *tm)
4 {
5 	static char buf[26];
6 	return asctime_r(tm, buf);
7 }
8