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