]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Minor fix to prevent e2fsck.h being included twice:
authorAndreas Dilger <adilger@clusterfs.com>
Wed, 28 Jun 2006 15:26:42 +0000 (11:26 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 28 Jun 2006 15:26:42 +0000 (11:26 -0400)
Signed-off-by: Andreas Dilger <adilger@clusterfs.com>
e2fsck/e2fsck.h

index 1194322ee9545221b679d614d42f16e76b2e0283..4fbe4671bdd750f4a98af8758b04b4130ffcc16f 100644 (file)
@@ -6,6 +6,9 @@
  * 
  */
 
+#ifndef _E2FSCK_H
+#define _E2FSCK_H
+
 #include <stdio.h>
 #include <string.h>
 #ifdef HAVE_UNISTD_H
@@ -478,3 +481,4 @@ extern int ext2_file_type(unsigned int mode);
 extern void e2fsck_clear_progbar(e2fsck_t ctx);
 extern int e2fsck_simple_progress(e2fsck_t ctx, const char *label,
                                  float percent, unsigned int dpynum);
+#endif /* _E2FSCK_H */