@@ -752,15 +752,19 @@ pub enum Whence {
752
752
/// equal to offset that contains some data. If offset points to
753
753
/// some data, then the file offset is set to offset.
754
754
#[ cfg( any( target_os = "dragonfly" , target_os = "freebsd" ,
755
- all( target_os = "linux" , not( any( target_env = "musl" , target_arch = "mips" ) ) ) ) ) ]
755
+ all( target_os = "linux" , not( any( target_env = "musl" ,
756
+ target_arch = "mips" ,
757
+ target_arch = "mips64" ) ) ) ) ) ]
756
758
SeekData = libc:: SEEK_DATA ,
757
759
/// Specify an offset relative to the next hole in the file greater than
758
760
/// or equal to offset. If offset points into the middle of a hole, then
759
761
/// the file offset should be set to offset. If there is no hole past offset,
760
762
/// then the file offset should be adjusted to the end of the file (i.e., there
761
763
/// is an implicit hole at the end of any file).
762
764
#[ cfg( any( target_os = "dragonfly" , target_os = "freebsd" ,
763
- all( target_os = "linux" , not( any( target_env = "musl" , target_arch = "mips" ) ) ) ) ) ]
765
+ all( target_os = "linux" , not( any( target_env = "musl" ,
766
+ target_arch = "mips" ,
767
+ target_arch = "mips64" ) ) ) ) ) ]
764
768
SeekHole = libc:: SEEK_HOLE
765
769
}
766
770
0 commit comments