xref: /aosp_15_r20/external/musl/src/time/asctime.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <time.h>
2 
asctime(const struct tm * tm)3 char *asctime(const struct tm *tm)
4 {
5 	static char buf[26];
6 	return __asctime_r(tm, buf);
7 }
8