Skip to content

Commit

Permalink
Merge pull request #2 from ids1024/fcntl
Browse files Browse the repository at this point in the history
Allow fcntl
  • Loading branch information
jackpot51 committed Jul 10, 2017
2 parents 60f24f4 + 369be9e commit ac8765d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.rs
Expand Up @@ -62,6 +62,10 @@ impl SchemeMut for RandScheme {
Ok(0)
}

fn fcntl(&mut self, _id: usize, _cmd: usize, _arg: usize) -> Result<usize> {
Ok(0)
}

fn close(&mut self, _file: usize) -> Result<usize> {
Ok(0)
}
Expand Down

0 comments on commit ac8765d

Please sign in to comment.