@@ -699,6 +699,7 @@ extern "C" {
699699 all( target_os = "freebsd" , any( freebsd11, freebsd10) ) ,
700700 link_name = "fstat@FBSD_1.0"
701701 ) ]
702+ #[ cfg_attr( target_os = "dragonfly" , allow( deprecated) ) ]
702703 pub fn fstat ( fildes : :: c_int , buf : * mut stat ) -> :: c_int ;
703704
704705 pub fn mkdir ( path : * const c_char , mode : mode_t ) -> :: c_int ;
@@ -712,6 +713,7 @@ extern "C" {
712713 all( target_os = "freebsd" , any( freebsd11, freebsd10) ) ,
713714 link_name = "stat@FBSD_1.0"
714715 ) ]
716+ #[ cfg_attr( target_os = "dragonfly" , allow( deprecated) ) ]
715717 pub fn stat ( path : * const c_char , buf : * mut stat ) -> :: c_int ;
716718
717719 pub fn pclose ( stream : * mut :: FILE ) -> :: c_int ;
@@ -796,6 +798,7 @@ extern "C" {
796798 all( target_os = "freebsd" , any( freebsd11, freebsd10) ) ,
797799 link_name = "fstatat@FBSD_1.1"
798800 ) ]
801+ #[ cfg_attr( target_os = "dragonfly" , allow( deprecated) ) ]
799802 pub fn fstatat (
800803 dirfd : :: c_int ,
801804 pathname : * const :: c_char ,
@@ -987,6 +990,7 @@ extern "C" {
987990 all( target_os = "freebsd" , any( freebsd11, freebsd10) ) ,
988991 link_name = "lstat@FBSD_1.0"
989992 ) ]
993+ #[ cfg_attr( target_os = "dragonfly" , allow( deprecated) ) ]
990994 pub fn lstat ( path : * const c_char , buf : * mut stat ) -> :: c_int ;
991995
992996 #[ cfg_attr(
0 commit comments