dns response handling: ignore presence of wrong-type RRs
[musl] / src / locale / iconv_close.c
1 #include <iconv.h>
2 #include <stdlib.h>
3
4 int iconv_close(iconv_t cd)
5 {
6         if (!((size_t)cd & 1)) free((void *)cd);
7         return 0;
8 }