Blame SOURCES/qv4global_p-multilib.h

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