05555b
/*
05555b
 * Kluge to support multilib installation of both 32 and 64-bit RPMS:
05555b
 * we need to arrange that header files that appear in both RPMs are
05555b
 * identical.  Hence, this file is architecture-independent and calls
05555b
 * in an arch-dependent file that will appear in just one RPM.
05555b
 *
05555b
 * To avoid breaking arches not explicitly supported by Fedora, we
05555b
 * use this indirection file *only* on known multilib arches.
05555b
 * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
05555b
05555b
#ifndef ZIPCONF_MULTILIB_H
05555b
#define ZIPCONF_MULTILIB_H
05555b
05555b
#include <bits/wordsize.h>
05555b
#if __WORDSIZE == 32
05555b
#include "zipconf-32.h"
05555b
#elif __WORDSIZE == 64
05555b
#include "zipconf-64.h"
05555b
#else
05555b
#error "unexpected value for __WORDSIZE macro"
05555b
#endif
05555b
05555b
#endif