1 #ifndef __FTCONFIG_H__MULTILIB 2 #define __FTCONFIG_H__MULTILIB 3 4 #include <bits/wordsize.h> 5 6 #if __WORDSIZE == 32 7 # include "ftconfig-32.h" 8 #elif __WORDSIZE == 64 9 # include "ftconfig-64.h" 10 #else 11 # error "unexpected value for __WORDSIZE macro" 12 #endif 13 14 #endif 15