/* * To avoid multiarch conflicts, we differentiate the 32/64 bit length * specific header names. This file is a wrapper to include the proper * arch-specific header at compile time. */ #include #if __WORDSIZE == 32 #include #elif __WORDSIZE == 64 #include #else #error "Unknown word size" #endif