File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -3787,6 +3787,7 @@ extern "C" {
3787
3787
pub fn close ( fd : :: c_int ) -> :: c_int ;
3788
3788
pub fn dup ( fd : :: c_int ) -> :: c_int ;
3789
3789
pub fn dup2 ( src : :: c_int , dst : :: c_int ) -> :: c_int ;
3790
+
3790
3791
pub fn execl ( path : * const c_char , arg0 : * const c_char , ...) -> :: c_int ;
3791
3792
pub fn execle ( path : * const :: c_char , arg0 : * const :: c_char , ...) -> :: c_int ;
3792
3793
pub fn execlp ( file : * const :: c_char , arg0 : * const :: c_char , ...) -> :: c_int ;
Original file line number Diff line number Diff line change @@ -6807,6 +6807,7 @@ cfg_if! {
6807
6807
// These require a dependency on `libiconv`, and including this when built as
6808
6808
// part of `std` means every Rust program gets it. Ideally we would have a link
6809
6809
// modifier to only include these if they are used, but we do not.
6810
+ #[ deprecated( note = "Will be removed in 1.0 to avoid the `iconv` dependency" ) ]
6810
6811
#[ cfg_attr( not( feature = "rustc-dep-of-std" ) , link( name = "iconv" ) ) ]
6811
6812
extern "C" {
6812
6813
pub fn iconv_open ( tocode : * const :: c_char , fromcode : * const :: c_char ) -> iconv_t ;
You can’t perform that action at this time.
0 commit comments