race condition fix: block all signals before decrementing thread count
[musl] / src / locale / freelocale.c
1 #include <stdlib.h>
2 #include "locale_impl.h"
3
4 void freelocale(locale_t l)
5 {
6         free(l);
7 }