arch/um/kernel/irq.c: clean up some functions
[linux-2.6/next.git] / include / linux / path.h
blob915e0c382a51fad7a3169748664b5e2153fa645e
1 #ifndef _LINUX_PATH_H
2 #define _LINUX_PATH_H
4 struct dentry;
5 struct vfsmount;
7 struct path {
8 struct vfsmount *mnt;
9 struct dentry *dentry;
12 extern void path_get(struct path *);
13 extern void path_put(struct path *);
15 #endif /* _LINUX_PATH_H */