rm-lisa 0.3.2

A logging library for rem-verse, with support for inputs, tasks, and more.
Documentation
//! OS specific definitions.

#[cfg(target_os = "aix")]
pub mod aix;
#[cfg(target_os = "android")]
pub mod android;
#[cfg(target_os = "macos")]
pub mod darwin;
#[cfg(target_os = "ios")]
pub mod darwin;
#[cfg(target_os = "dragonfly")]
pub mod dragonfly;
#[cfg(target_os = "freebsd")]
pub mod freebsd;
#[cfg(target_os = "haiku")]
pub mod haiku;
#[cfg(target_os = "illumos")]
pub mod illumos;
#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(target_os = "netbsd")]
pub mod netbsd;
#[cfg(target_os = "openbsd")]
pub mod openbsd;
#[cfg(target_os = "solaris")]
pub mod solaris;

#[cfg(target_os = "aix")]
pub use crate::termios::os::aix as target;
#[cfg(target_os = "android")]
pub use crate::termios::os::android as target;
#[cfg(target_os = "macos")]
pub use crate::termios::os::darwin as target;
#[cfg(target_os = "ios")]
pub use crate::termios::os::darwin as target;
#[cfg(target_os = "dragonfly")]
pub use crate::termios::os::dragonfly as target;
#[cfg(target_os = "freebsd")]
pub use crate::termios::os::freebsd as target;
#[cfg(target_os = "haiku")]
pub use crate::termios::os::haiku as target;
#[cfg(target_os = "illumos")]
pub use crate::termios::os::illumos as target;
#[cfg(target_os = "linux")]
pub use crate::termios::os::linux as target;
#[cfg(target_os = "netbsd")]
pub use crate::termios::os::netbsd as target;
#[cfg(target_os = "openbsd")]
pub use crate::termios::os::openbsd as target;
#[cfg(target_os = "solaris")]
pub use crate::termios::os::solaris as target;