File tree 2 files changed +0
-19
lines changed
2 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -1951,9 +1951,6 @@ getxattr
1951
1951
glob
1952
1952
glob_t
1953
1953
globfree
1954
- iconv
1955
- iconv_close
1956
- iconv_open
1957
1954
iconv_t
1958
1955
id_t
1959
1956
idtype_t
Original file line number Diff line number Diff line change @@ -6492,22 +6492,6 @@ cfg_if! {
6492
6492
}
6493
6493
}
6494
6494
6495
- // These require a dependency on `libiconv`, and including this when built as
6496
- // part of `std` means every Rust program gets it. Ideally we would have a link
6497
- // modifier to only include these if they are used, but we do not.
6498
- #[ cfg_attr( not( feature = "rustc-dep-of-std" ) , link( name = "iconv" ) ) ]
6499
- extern "C" {
6500
- pub fn iconv_open ( tocode : * const :: c_char , fromcode : * const :: c_char ) -> iconv_t ;
6501
- pub fn iconv (
6502
- cd : iconv_t ,
6503
- inbuf : * mut * mut :: c_char ,
6504
- inbytesleft : * mut :: size_t ,
6505
- outbuf : * mut * mut :: c_char ,
6506
- outbytesleft : * mut :: size_t ,
6507
- ) -> :: size_t ;
6508
- pub fn iconv_close ( cd : iconv_t ) -> :: c_int ;
6509
- }
6510
-
6511
6495
cfg_if ! {
6512
6496
if #[ cfg( target_pointer_width = "32" ) ] {
6513
6497
mod b32;
You can’t perform that action at this time.
0 commit comments