14 lines
485 B
C
14 lines
485 B
C
/* This file is here to prevent a file conflict on multiarch systems. A
|
|
* conflict will occur because ext2_types.h has arch-specific definitions.
|
|
*
|
|
* DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
|
|
|
|
#if defined(__i386__)
|
|
#include "ext2_types-i386.h"
|
|
#elif defined(__x86_64__)
|
|
#include "ext2_types-x86_64.h"
|
|
#elif defined(__arm__)
|
|
#include "ext2_types-arm.h"
|
|
#else
|
|
#error "This e2fsprogs-devel package does not work your architecture?"
|
|
#endif |