fix the type of CLOCKS_PER_SEC to match new clock_t type
[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 }