Blame SOURCES/qv4global_p-multilib.h

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