github.com/afumu/libc@v0.0.6/musl/src/locale/freelocale.c (about) 1 #include <stdlib.h> 2 #include "locale_impl.h" 3 4 void freelocale(locale_t l) 5 { 6 if (__loc_is_allocated(l)) free(l); 7 } 8 9 weak_alias(freelocale, __freelocale);