summaryrefslogtreecommitdiff
path: root/src/locale/newlocale.c
blob: 447c8fc20262420510135d7c26081acb4b86d638 (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 newlocale(int mask, const char *name, locale_t base)
{
	if (*name && strcmp(name, "C") && strcmp(name, "POSIX"))
		return 0;
	if (!base) base = calloc(1, sizeof *base);
	return base;
}

weak_alias(newlocale, __newlocale);