Blame SOURCES/qv4global_p-multilib.h

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