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