diff options
author | rsc <rsc> | 2007-08-24 20:54:23 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-24 20:54:23 +0000 |
commit | 07090dd705df557cba5ce4ea46b2a274876343a5 (patch) | |
tree | 4e4c4415c702ff4c041e101ab3c7173fd636d9d0 /user.h | |
parent | fa1b34106ad99cf8021227b4c1e62353ae4d0fda (diff) | |
download | xv6-labs-07090dd705df557cba5ce4ea46b2a274876343a5.tar.gz xv6-labs-07090dd705df557cba5ce4ea46b2a274876343a5.tar.bz2 xv6-labs-07090dd705df557cba5ce4ea46b2a274876343a5.zip |
Remove struct uinode.
Remove type arg to mknod (assume T_DEV).
Diffstat (limited to 'user.h')
-rw-r--r-- | user.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ int close(int); int kill(int); int exec(char*, char**); int open(char*, int); -int mknod(char*, short, short, short); +int mknod(char*, short, short); int unlink(char*); int fstat(int fd, struct stat*); int link(char*, char*); |