mod.rs 259 B

1234567891011121314
  1. //! template implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/template.h.html
  2. #![no_std]
  3. extern crate platform;
  4. use platform::types::*;
  5. /*
  6. #[no_mangle]
  7. pub extern "C" fn func(args) -> c_int {
  8. unimplemented!();
  9. }
  10. */