1 /* Public domain. */ 2 3 #ifndef _LINUX_FILE_H 4 #define _LINUX_FILE_H 5 6 /* both for printf */ 7 #include <sys/types.h> 8 #include <sys/systm.h> 9 10 void fd_install(int, struct file *); 11 void fput(struct file *); 12 13 int get_unused_fd_flags(unsigned int); 14 void put_unused_fd(int); 15 16 #endif 17