Whamcloud - gitweb
Fix gcc -Wall nits.
[tools/e2fsprogs.git] / lib / ext2fs / native.c
index 2ea8549..85d0989 100644 (file)
 
 #include <stdio.h>
 
-#if EXT2_FLAT_INCLUDES
 #include "ext2_fs.h"
-#else
-#include <linux/ext2_fs.h>
-#endif
-
 #include "ext2fs.h"
 
-static int i386_byteorder(void)
-{
-       int one = 1;
-       char *cp = (char *) &one;
-
-       return (*cp == 1);
-}
-
 int ext2fs_native_flag(void)
 {
-       if (i386_byteorder())
-               return 0;
+#ifdef WORDS_BIGENDIAN
        return EXT2_FLAG_SWAP_BYTES;
+#else
+       return 0;
+#endif
 }