mailing list of musl libc
 help / color / mirror / code / Atom feed
9047b38f44e17493e365c44382fe70c4025fde22 blob 152 bytes (raw)

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

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

solving 9047b38f ...
found 9047b38f in https://inbox.vuxu.org/musl/alpine.LNX.2.20.13.1706152038570.13954@monopod.intra.ispras.ru/
found d2260a16 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 d2260a165a2e88112f0c74e5f2d13628af09e2ff	src/time/ctime_r.c

applying [1/1] https://inbox.vuxu.org/musl/alpine.LNX.2.20.13.1706152038570.13954@monopod.intra.ispras.ru/
diff --git a/src/time/ctime_r.c b/src/time/ctime_r.c
index d2260a16..9047b38f 100644

Checking patch src/time/ctime_r.c...
Applied patch src/time/ctime_r.c cleanly.

index at:
100644 9047b38f44e17493e365c44382fe70c4025fde22	src/time/ctime_r.c

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).