blob: cbebdc5c9a60be0320cf9d20af1968992674c9cf [file] [log] [blame]
Jan Blunckc5e725f2008-02-14 19:34:31 -08001#ifndef _LINUX_PATH_H
2#define _LINUX_PATH_H
3
4struct dentry;
5struct vfsmount;
6
7struct path {
8 struct vfsmount *mnt;
9 struct dentry *dentry;
10};
11
12#endif /* _LINUX_PATH_H */