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