diff options
author | paul <paul@FreeBSD.org> | 1994-08-21 07:19:45 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1994-08-21 07:19:45 +0000 |
commit | ef6f4b86ab038cbd661be4b2c78c57d787f9526f (patch) | |
tree | a2c9d32450a1cbb486eab50fb696102fd5011994 /sys/gnu/ext2fs | |
parent | bcc18c44d8f807cbe41360d366b0acbab357d1fc (diff) | |
download | FreeBSD-src-ef6f4b86ab038cbd661be4b2c78c57d787f9526f.zip FreeBSD-src-ef6f4b86ab038cbd661be4b2c78c57d787f9526f.tar.gz |
Made idempotent
Reviewed by:
Submitted by:
Diffstat (limited to 'sys/gnu/ext2fs')
-rw-r--r-- | sys/gnu/ext2fs/ext2_mount.h | 7 | ||||
-rw-r--r-- | sys/gnu/ext2fs/inode.h | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/sys/gnu/ext2fs/ext2_mount.h b/sys/gnu/ext2fs/ext2_mount.h index 084abeb..02fdff2 100644 --- a/sys/gnu/ext2fs/ext2_mount.h +++ b/sys/gnu/ext2fs/ext2_mount.h @@ -31,9 +31,12 @@ * SUCH DAMAGE. * * @(#)ufsmount.h 8.2 (Berkeley) 1/12/94 - * $Id$ + * $Id: ufsmount.h,v 1.2 1994/08/02 07:55:04 davidg Exp $ */ +#ifndef _UFS_UFS_UFSMOUNT_H_ +#define _UFS_UFS_UFSMOUNT_H_ + struct buf; struct inode; struct nameidata; @@ -81,4 +84,4 @@ struct ufsmount { #define is_sequential(ump, a, b) ((b) == (a) + ump->um_seqinc) #define MNINDIR(ump) ((ump)->um_nindir) - +#endif diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h index e379443..cda8fb44b 100644 --- a/sys/gnu/ext2fs/inode.h +++ b/sys/gnu/ext2fs/inode.h @@ -36,9 +36,12 @@ * SUCH DAMAGE. * * @(#)inode.h 8.4 (Berkeley) 1/21/94 - * $Id$ + * $Id: inode.h,v 1.2 1994/08/02 07:54:49 davidg Exp $ */ +#ifndef _UFS_UFS_INODE_H_ +#define _UFS_UFS_INODE_H_ + #include <ufs/ufs/dinode.h> /* @@ -160,4 +163,6 @@ struct ufid { ino_t ufid_ino; /* File number (ino). */ long ufid_gen; /* Generation number. */ }; + +#endif #endif /* KERNEL */ |