mailing list of musl libc
 help / color / mirror / code / Atom feed
716df4afda48763b3ece6b03eb186cdedbb7f296 blob 287 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 
#include <stdlib.h>
#include <string.h>
#include "locale_impl.h"
#include "libc.h"

locale_t __duplocale(locale_t old)
{
	locale_t new;
	new = calloc(1, sizeof *new);
	if (new && old != LC_GLOBAL_LOCALE) memcpy(new, old, sizeof *new);
	return new;
}

weak_alias(__duplocale, duplocale);
debug log:

solving 716df4a ...
found 716df4a in https://inbox.vuxu.org/musl/20120722183201.11fe567e@newbook/
found 5f01e13 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 5f01e13799ad51cfd184782fbf22b7c832143422	src/locale/duplocale.c

applying [1/1] https://inbox.vuxu.org/musl/20120722183201.11fe567e@newbook/
diff --git a/src/locale/duplocale.c b/src/locale/duplocale.c
index 5f01e13..716df4a 100644

Checking patch src/locale/duplocale.c...
Applied patch src/locale/duplocale.c cleanly.

index at:
100644 716df4afda48763b3ece6b03eb186cdedbb7f296	src/locale/duplocale.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).