blob: d69d66851a797baf433a54fd5da2bd6a718887b5 [file] [log] [blame]
#include "libc.h"
#include "locale_impl.h"
#include <stdlib.h>
void freelocale(locale_t l) {
if (__loc_is_allocated(l))
free(l);
}
weak_alias(freelocale, __freelocale);