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