diff options
author | rsc <rsc> | 2007-08-27 14:35:09 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-27 14:35:09 +0000 |
commit | 1ccff18b2404e18fc889901f85b72777193c0b3f (patch) | |
tree | d941f80dbef7df236c522eeee8bbf8b8c27b8663 /defs.h | |
parent | 7895178df374a1a89c193e5c83a37a35243aadc2 (diff) | |
download | xv6-labs-1ccff18b2404e18fc889901f85b72777193c0b3f.tar.gz xv6-labs-1ccff18b2404e18fc889901f85b72777193c0b3f.tar.bz2 xv6-labs-1ccff18b2404e18fc889901f85b72777193c0b3f.zip |
fileincref -> filedup (consistent with idup)
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ int exec(char*, char**); // file.c struct file* filealloc(void); void fileclose(struct file*); -void fileincref(struct file*); +struct file* filedup(struct file*); void fileinit(void); int fileread(struct file*, char*, int n); int filestat(struct file*, struct stat*); |