11 lines
231 B
Rust
11 lines
231 B
Rust
//! template implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/template.h.html
|
|
|
|
use platform::types::*;
|
|
|
|
/*
|
|
#[unsafe(no_mangle)]
|
|
pub extern "C" fn func(args) -> c_int {
|
|
unimplemented!();
|
|
}
|
|
*/
|