diff options
author | rsc <rsc> | 2006-07-17 01:25:22 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-07-17 01:25:22 +0000 |
commit | c54c79267fd4c3404000b3c545c428209e4d8a3d (patch) | |
tree | 575779df60f79558c183f08646f77fdf39f6bad8 /defs.h | |
parent | 564f787e916392af7b1960d079abf110234305d4 (diff) | |
download | xv6-labs-c54c79267fd4c3404000b3c545c428209e4d8a3d.tar.gz xv6-labs-c54c79267fd4c3404000b3c545c428209e4d8a3d.tar.bz2 xv6-labs-c54c79267fd4c3404000b3c545c428209e4d8a3d.zip |
nitpicks
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,8 +79,8 @@ int pipe_write(struct pipe *p, char *addr, int n); int pipe_read(struct pipe *p, char *addr, int n); // fd.c -int fd_ualloc(); -struct fd * fd_alloc(); +int fd_ualloc(void); +struct fd * fd_alloc(void); void fd_close(struct fd *); int fd_read(struct fd *fd, char *addr, int n); int fd_write(struct fd *fd, char *addr, int n); |