mailing list of musl libc
 help / color / mirror / code / Atom feed
5ce33ae6ded0acc40a93706bf39db10c3775f2b3 blob 394 bytes (raw)

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

#define malloc __libc_malloc
#define calloc undef
#define realloc undef
#define free undef

locale_t __duplocale(locale_t old)
{
	locale_t new = malloc(sizeof *new);
	if (!new) return 0;
	if (old == LC_GLOBAL_LOCALE) old = &libc.global_locale;
	*new = *old;
	return new;
}

weak_alias(__duplocale, duplocale);
debug log:

solving 5ce33ae6 ...
found 5ce33ae6 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).