Add the Fd definition file.

Damn, I forgot to `git add` it.
This commit is contained in:
ticki 2016-08-31 17:01:08 +02:00
parent 94a1a0fa0c
commit 03e7f221a8

5
kernel/scheme/fd.rs Normal file
View file

@ -0,0 +1,5 @@
/// A file descriptor.
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Fd {
inner: usize,
}