mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
765 B

  1. --- ./include/ext2fs/ext2fs.h.orig 2006-06-01 19:24:53.000000000 +0200
  2. +++ ./include/ext2fs/ext2fs.h 2007-07-23 01:23:19.000000000 +0200
  3. @@ -50,17 +50,8 @@
  4. #if EXT2_FLAT_INCLUDES
  5. #include "e2_types.h"
  6. #else
  7. -#include <asm/types.h>
  8. -#if !defined(__GNUC__) || defined(__STRICT_ANSI__) /* asm/types.h already defines __s64 and __u64 otherwise */
  9. -#if SIZEOF_LONG == 8
  10. -typedef __signed__ long __s64;
  11. -typedef unsigned long __u64;
  12. -#elif SIZEOF_LONG_LONG == 8 || \
  13. - defined(__GNUC__) && (((~0UL) == 0xffffffff) || defined(__i386__))
  14. -typedef __signed__ long long __s64;
  15. -typedef unsigned long long __u64;
  16. -#endif /* SIZEOF_LONG == 8 */
  17. -#endif
  18. +#include <ext2fs/ext2_types.h>
  19. +#include <ext2fs/ext2_fs.h>
  20. #endif /* EXT2_FLAT_INCLUDES */
  21. typedef __u32 blk_t;