kolibrios/drivers/include/linux/file.h
Sergey Semyonov (Serge) 4b9e73fcb4 ddk: v.4.4.5
git-svn-id: svn://kolibrios.org@6336 a494cfbc-eb01-0410-851d-a64ba20cac60
2016-03-13 06:45:57 +00:00

17 lines
335 B
C

/*
* Wrapper functions for accessing the file_struct fd array.
*/
#ifndef __LINUX_FILE_H
#define __LINUX_FILE_H
#include <linux/compiler.h>
#include <linux/types.h>
#include <linux/posix_types.h>
struct file;
extern void fput(struct file *);
extern struct file *fget(unsigned int fd);
#endif /* __LINUX_FILE_H */