cfe00d3316
Fish only requires BSHELL. The constants are implementation specific so this header will evolve as needed. Cbindgen doesn't emit defines for strings (even CStrs) so I only provided what's needed for Fish in a C header for now with the ideal implementation, in Rust, unbuilt.
12 lines
190 B
Rust
12 lines
190 B
Rust
//! Implementation specific, non-standard path aliases
|
|
|
|
#[cfg(target_os = "linux")]
|
|
#[path = "linux.rs"]
|
|
mod sys;
|
|
|
|
#[cfg(target_os = "redox")]
|
|
#[path = "redox.rs"]
|
|
mod sys;
|
|
|
|
pub use sys::*;
|