Remove struct uinode.

Remove type arg to mknod (assume T_DEV).
This commit is contained in:
rsc 2007-08-24 20:54:23 +00:00
parent fa1b34106a
commit 07090dd705
10 changed files with 129 additions and 140 deletions

2
file.h
View file

@ -4,6 +4,6 @@ struct file {
char readable;
char writable;
struct pipe *pipe;
struct uinode *ip;
struct inode *ip;
uint off;
};