2008-04-03 14:34:04 +00:00
|
|
|
/* This file is here to prevent a file conflict on multiarch systems. A
|
2012-07-31 13:56:46 +00:00
|
|
|
* conflict will occur because @@INCLUDE@@ has arch-specific definitions.
|
2008-04-03 14:34:04 +00:00
|
|
|
*
|
|
|
|
* DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
|
|
|
|
|
2012-07-31 13:56:46 +00:00
|
|
|
#ifndef @@INCLUDE_MACRO@@_MULTILIB_H
|
|
|
|
#define @@INCLUDE_MACRO@@_MULTILIB_H
|
|
|
|
#include <bits/wordsize.h>
|
|
|
|
|
|
|
|
#if __WORDSIZE == 32
|
2012-08-08 23:56:30 +00:00
|
|
|
#include "@@INCLUDE@@-32.h"
|
2012-07-31 13:56:46 +00:00
|
|
|
#elif __WORDSIZE == 64
|
2012-08-08 23:56:30 +00:00
|
|
|
#include "@@INCLUDE@@-64.h"
|
2008-04-03 14:34:04 +00:00
|
|
|
#else
|
2012-07-31 13:56:46 +00:00
|
|
|
#error "unexpected value for __WORDSIZE macro"
|
|
|
|
#endif
|
|
|
|
|
2008-04-03 14:34:04 +00:00
|
|
|
#endif
|