9159183
/*
9159183
 * Kluge to support multilib installation of both 32- and 64-bit RPMS:
9159183
 * we need to arrange that header files that appear in both RPMs are
9159183
 * identical.  Hence, this file is architecture-independent and calls
9159183
 * in an arch-dependent file that will appear in just one RPM.
9159183
 *
9159183
 * To avoid breaking arches not explicitly supported by Red Hat, we
9159183
 * use this indirection file *only* on known multilib arches.
9159183
 *
9159183
 * Note: this may well fail if user tries to use gcc's -I- option.
9159183
 * But that option is deprecated anyway.
9159183
 */
9159183
#if defined(__x86_64__)
9159183
#include "ecpg_config_x86_64.h"
9159183
#elif defined(__i386__)
9159183
#include "ecpg_config_i386.h"
9159183
#elif defined(__ppc64__) || defined(__powerpc64__)
9159183
#include "ecpg_config_ppc64.h"
9159183
#elif defined(__ppc__) || defined(__powerpc__)
9159183
#include "ecpg_config_ppc.h"
9159183
#elif defined(__s390x__)
9159183
#include "ecpg_config_s390x.h"
9159183
#elif defined(__s390__)
9159183
#include "ecpg_config_s390.h"
9159183
#endif