1/* Indirect to real m/ file for universal compilation */
2#ifdef __POWERPC__
3#include "powermac.h"
4#ifndef WORDS_BIG_ENDIAN
5#error "Wrong endianess for ppc!"
6#endif	/* WORDS_BIG_ENDIAN */
7#elif defined(__i386__)
8#include "intel386.h"
9#define NO_ARG_ARRAY
10#ifdef WORDS_BIG_ENDIAN
11#error "Wrong endianess for i386!"
12#endif	/* WORDS_BIG_ENDIAN */
13#elif defined(__x86_64__)
14#include "amdx86-64.h"
15#undef START_FILES
16#undef LIB_STANDARD
17#ifdef WORDS_BIG_ENDIAN
18#error "Wrong endianess for x86_64!"
19#endif	/* WORDS_BIG_ENDIAN */
20#else	/* !PPC && !x86 && !x86_64 */
21#error "FIXME: Unknown machine architecture"
22#endif	/* PPC || x86 || x86_64 */
23