Convert the Makefile to Cake.

This has been planned for a while.
This commit is contained in:
ticki 2016-08-14 18:40:34 +02:00
commit 7b8ba1a118
3 changed files with 41 additions and 4 deletions

View file

@ -6,6 +6,7 @@
/// also stripping the scheme identifier of paths if necessary.
pub trait Scheme {
/// Open the file at `path` with `flags`.
///
/// Returns a file descriptor or an error
fn open(path: &str, flags: usize) -> Result<usize>;
}