// 9P2000.L carries Linux ABI values on every host, so these constants must not
// come from the compilation target's libc (notably, browsers have no libc).
pub const EIO: i32 = 5;
pub const EAGAIN: u32 = 11;
pub const ENOENT: u32 = 2;
pub const ESTALE: u32 = 116;
pub const O_CREAT: u32 = 0o100;
pub const O_EXCL: u32 = 0o200;
pub const O_TRUNC: u32 = 0o1000;