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