forked from luck/tmp_suning_uos_patched
13 lines
171 B
C
13 lines
171 B
C
|
#ifndef _LINUX_PATH_H
|
||
|
#define _LINUX_PATH_H
|
||
|
|
||
|
struct dentry;
|
||
|
struct vfsmount;
|
||
|
|
||
|
struct path {
|
||
|
struct vfsmount *mnt;
|
||
|
struct dentry *dentry;
|
||
|
};
|
||
|
|
||
|
#endif /* _LINUX_PATH_H */
|