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