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