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

extern crate alloc;

pub use libc::*;

mod util;

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