mailing list of musl libc
 help / color / mirror / code / Atom feed
d2260a165a2e88112f0c74e5f2d13628af09e2ff blob 131 bytes (raw)

1
2
3
4
5
6
7
8
 
#include <time.h>

char *ctime_r(const time_t *t, char *buf)
{
	struct tm tm;
	localtime_r(t, &tm);
	return asctime_r(&tm, buf);
}
debug log:

solving d2260a1 ...
found d2260a1 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).