summaryrefslogtreecommitdiffstats
path: root/src/c/posix.rs
blob: 3933a2eef2296b742737fac606e96ffc3d62fee7 (plain)
1
2
3
4
5
6
7
8
extern "C" {
	pub fn strndup(cs: *const libc::c_char, n: libc::size_t) -> *mut libc::c_char;

	pub static mut stdin: *mut libc::FILE;
	pub static mut stdout: *mut libc::FILE;
	pub static mut stderr: *mut libc::FILE;

}