musl - an implementation of the standard library for Linux-based systems
blob: 1febe54409e4c601849a6cf28c0f3cf16947737a (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <time.h>
char *asctime(const struct tm *tm)
{
static char buf[26];
return __asctime_r(tm, buf);
}
|