summaryrefslogtreecommitdiff
path: root/fd.h
diff options
context:
space:
mode:
Diffstat (limited to 'fd.h')
-rw-r--r--fd.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/fd.h b/fd.h
deleted file mode 100644
index 15d6b78..0000000
--- a/fd.h
+++ /dev/null
@@ -1,9 +0,0 @@
-struct file {
- enum { FD_CLOSED, FD_NONE, FD_PIPE, FD_FILE } type;
- int ref; // reference count
- char readable;
- char writable;
- struct pipe *pipe;
- struct inode *ip;
- uint off;
-};