Blame SOURCES/gpgme-multilib.h

230d5d
/* gpgme-multilib.h */
230d5d
/* This file is here to prevent a file conflict on multiarch systems.  A
230d5d
 * conflict will occur because gpgme.h has arch-specific definitions.
230d5d
 *
230d5d
 * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
230d5d
230d5d
#ifndef GPGME_MULTILIB_H
230d5d
#define GPGME_MULTILIB_H
230d5d
#include <bits/wordsize.h>
230d5d
230d5d
#if __WORDSIZE == 32
230d5d
#include "gpgme-32.h"
230d5d
#elif __WORDSIZE == 64
230d5d
#include "gpgme-64.h"
230d5d
#else
230d5d
#error "unexpected value for __WORDSIZE macro"
230d5d
#endif
230d5d
230d5d
#endif
230d5d