diff options
author | 2013-06-04 09:11:40 +0000 | |
---|---|---|
committer | 2013-06-04 09:11:40 +0000 | |
commit | 9d2ad5b0902319973380868d1c25842454bb1daf (patch) | |
tree | ea4f28ef797bdedeb10e72bb74430f139e1a372b /sys/tmpfs | |
parent | we are at 5.3.3 now. (diff) | |
download | wireguard-openbsd-9d2ad5b0902319973380868d1c25842454bb1daf.tar.xz wireguard-openbsd-9d2ad5b0902319973380868d1c25842454bb1daf.zip |
fix include guard locations (from pedro)
Diffstat (limited to 'sys/tmpfs')
-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_ */ |