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