forked from emacs-mirror/emacs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmac.h
25 lines (24 loc) · 689 Bytes
/
mac.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* mac.h -*- C -*- */
/* Indirect to real m/ file for universal compilation */
#ifdef __POWERPC__
# include "powermac.h"
# ifndef WORDS_BIG_ENDIAN
# error "Wrong endianess for ppc!"
# endif /* WORDS_BIG_ENDIAN */
#elif defined(__i386__)
# include "intel386.h"
# define NO_ARG_ARRAY
# ifdef WORDS_BIG_ENDIAN
# error "Wrong endianess for i386!"
# endif /* WORDS_BIG_ENDIAN */
#elif defined(__x86_64__)
# include "amdx86-64.h"
# undef START_FILES
# undef LIB_STANDARD
# ifdef WORDS_BIG_ENDIAN
# error "Wrong endianess for x86_64!"
# endif /* WORDS_BIG_ENDIAN */
#else /* !PPC && !x86 && !x86_64 */
# error "FIXME: Unknown machine architecture"
#endif /* PPC || x86 || x86_64 */
/* EOF */