summaryrefslogtreecommitdiffstats
path: root/safe_libc/src/lib.rs
blob: 2e39b8d945ff4e97f7659eca4cf8a7a0b59e7ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![no_std]
#![feature(extern_types)]
#![feature(slice_ptr_len)]
// #![feature(ffi_const)]

extern crate alloc;

pub use libc::*;

mod util;

pub mod boxed;
pub mod errno;
pub mod stdio;
pub mod string;

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;
}