blob: f9fc1ffa75dac6e0c816984e94fe8754cc93edae (
plain) (
blame)
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);
|