summaryrefslogtreecommitdiff
path: root/src/locale/uselocale.c
blob: 9c7995783d24869d118d7f1a5ab7cd295aeacc0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "locale_impl.h"
#include "pthread_impl.h"

locale_t uselocale(locale_t l)
{
	pthread_t self = pthread_self();
	locale_t old = self->locale;
	if (l) self->locale = l;
	return old;
}