repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
release 1.2.5
[musl.git]
/
src
/
locale
/
iconv_close.c
blob
28b29565942f3bc16a765b6906a71da16a5c9d7d
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
}