diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2013-06-04 09:11:41 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2013-06-04 09:11:41 +0000 |
commit | 30958b677e4ca8c5a53581aa66a966b2ed6fbb39 (patch) | |
tree | 0771ff00c1ed3a3511f0e3fb00464a4f4e5b1326 | |
parent | a8c41970fcd92d0339329c8aa56b3843172ad858 (diff) |
fix include guard locations (from pedro)
-rw-r--r-- | sys/tmpfs/tmpfs.h | 8 | ||||
-rw-r--r-- | sys/tmpfs/tmpfs_vnops.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/tmpfs/tmpfs.h b/sys/tmpfs/tmpfs.h index b2e9aea0249..0699e9dbda4 100644 --- a/sys/tmpfs/tmpfs.h +++ b/sys/tmpfs/tmpfs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmpfs.h,v 1.2 2013/06/03 10:37:02 espie Exp $ */ +/* $OpenBSD: tmpfs.h,v 1.3 2013/06/04 09:11:40 espie Exp $ */ /* $NetBSD: tmpfs.h,v 1.45 2011/09/27 01:10:43 christos Exp $ */ /* @@ -31,8 +31,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _FS_TMPFS_TMPFS_H_ -#define _FS_TMPFS_TMPFS_H_ +#ifndef _TMPFS_TMPFS_H_ +#define _TMPFS_TMPFS_H_ #if !defined(_KERNEL) && !defined(_KMEMUSER) #error "not supposed to be exposed to userland" @@ -381,4 +381,4 @@ VP_TO_TMPFS_NODE(struct vnode *vp) return node; } -#endif /* _FS_TMPFS_TMPFS_H_ */ +#endif /* _TMPFS_TMPFS_H_ */ diff --git a/sys/tmpfs/tmpfs_vnops.h b/sys/tmpfs/tmpfs_vnops.h index b5de1fe3442..0862d676765 100644 --- a/sys/tmpfs/tmpfs_vnops.h +++ b/sys/tmpfs/tmpfs_vnops.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmpfs_vnops.h,v 1.2 2013/06/03 10:37:02 espie Exp $ */ +/* $OpenBSD: tmpfs_vnops.h,v 1.3 2013/06/04 09:11:40 espie Exp $ */ /* $NetBSD: tmpfs_vnops.h,v 1.13 2011/05/24 20:17:49 rmind Exp $ */ /* @@ -31,8 +31,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _FS_TMPFS_TMPFS_VNOPS_H_ -#define _FS_TMPFS_TMPFS_VNOPS_H_ +#ifndef _TMPFS_TMPFS_VNOPS_H_ +#define _TMPFS_TMPFS_VNOPS_H_ #if !defined(_KERNEL) #error not supposed to be exposed to userland. @@ -82,4 +82,4 @@ int tmpfs_getpages (void *); int tmpfs_putpages (void *); int tmpfs_whiteout (void *); -#endif /* _FS_TMPFS_TMPFS_VNOPS_H_ */ +#endif /* _TMPFS_TMPFS_VNOPS_H_ */ |