xref: /haiku/src/system/libroot/posix/musl/time/asctime.c (revision 68f76d61d74f9f73085105d541b4d0a5e7df0317)
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