1 2 3 4 5 6 7 8 9 10
#include <stdlib.h> #include "locale_impl.h" #include "libc.h" void freelocale(locale_t l) { free(l); } weak_alias(freelocale, __freelocale);