Author: pjd
Date: Sat Apr 24 07:54:49 2010
New Revision: 207143
URL: http://svn.freebsd.org/changeset/base/207143

Log:
  Protect fsck.h from being included twice.

Modified:
  head/sbin/fsck_ffs/fsck.h

Modified: head/sbin/fsck_ffs/fsck.h
==============================================================================
--- head/sbin/fsck_ffs/fsck.h   Sat Apr 24 07:36:33 2010        (r207142)
+++ head/sbin/fsck_ffs/fsck.h   Sat Apr 24 07:54:49 2010        (r207143)
@@ -60,6 +60,9 @@
  * $FreeBSD$
  */
 
+#ifndef _FSCK_H_
+#define        _FSCK_H_
+
 #include <unistd.h>
 #include <stdlib.h>
 #include <stdio.h>
@@ -389,3 +392,5 @@ void                setinodebuf(ino_t);
 int            setup(char *dev);
 void           gjournal_check(const char *filesys);
 int            suj_check(const char *filesys);
+
+#endif /* !_FSCK_H_ */
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to