We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b2c6f commit c7c1bebCopy full SHA for c7c1beb
src/sys/termios.rs
@@ -584,9 +584,10 @@ libc_enum! {
584
}
585
586
#[cfg(all(target_os = "linux", target_arch = "sparc64"))]
587
-pub const VMIN: SpecialCharacterIndices = SpecialCharacterIndices::VEOF;
588
-#[cfg(all(target_os = "linux", target_arch = "sparc64"))]
589
-pub const VTIME: SpecialCharacterIndices = SpecialCharacterIndices::VEOL;
+impl SpecialCharacterIndices {
+ pub const VMIN: SpecialCharacterIndices = SpecialCharacterIndices::VEOF;
+ pub const VTIME: SpecialCharacterIndices = SpecialCharacterIndices::VEOL;
590
+}
591
592
pub use libc::NCCS;
593
#[cfg(any(target_os = "dragonfly",
0 commit comments