summaryrefslogtreecommitdiffstats
path: root/src/c/posix.rs
blob: 6b63ea7e9197ccf317ebef38d9d4ff7bfd43a457 (plain)
1
2
3
4
5
6
7
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;
}