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 /fd.c | |
parent | 564f787e916392af7b1960d079abf110234305d4 (diff) | |
download | xv6-labs-c54c79267fd4c3404000b3c545c428209e4d8a3d.tar.gz xv6-labs-c54c79267fd4c3404000b3c545c428209e4d8a3d.tar.bz2 xv6-labs-c54c79267fd4c3404000b3c545c428209e4d8a3d.zip |
nitpicks
Diffstat (limited to 'fd.c')
-rw-r--r-- | fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ struct fd fds[NFD]; * allocate a file descriptor number for curproc. */ int -fd_ualloc() +fd_ualloc(void) { int fd; struct proc *p = curproc[cpu()]; @@ -29,7 +29,7 @@ fd_ualloc() * allocate a file descriptor structure */ struct fd * -fd_alloc() +fd_alloc(void) { int i; |