blob: b4d4a12029e6947fd026302cafa7dc3e839faca0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
pub const STDOUT_FILENO: i32 = 1;
#[repr(u8)]
pub enum c_void {
__variant1,
__variant2,
}
extern "C" {
pub fn abort() -> !;
pub fn write(fd: i32, buf: *const c_void, count: usize) -> isize;
}
|