This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neco/src/c/posix.rs

7 lines
209 B
Rust

extern "C" {
pub fn strndup(cs: *const libc::c_char, n: libc::size_t) -> *mut libc::c_char;
// pub static stdin: *mut libc::FILE;
pub static stdout: *mut libc::FILE;
pub static stderr: *mut libc::FILE;
}