diff options
Diffstat (limited to 'include/linux/file.h')
-rw-r--r-- | include/linux/file.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/file.h b/include/linux/file.h index 05f388f08..0125f9087 100644 --- a/include/linux/file.h +++ b/include/linux/file.h @@ -44,7 +44,7 @@ extern inline struct file * fget(unsigned int fd) /* * Install a file pointer in the fd array. */ -extern inline void fd_install(unsigned int fd, struct file *file) +extern inline void fd_install(unsigned int fd, struct file * file) { current->files->fd[fd] = file; } @@ -65,7 +65,7 @@ extern inline void fd_install(unsigned int fd, struct file *file) * I suspect there are many other similar "optimizations" across the * kernel... */ -extern void fput(struct file *file); -extern void put_filp(struct file *file); +extern void fput(struct file *); +extern void put_filp(struct file *); -#endif +#endif /* __LINUX_FILE_H */ |