This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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;
}