add _ALL_SOURCE as an alias for _GNU_SOURCE/enable-everything
[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 }