Last change
on this file since 57 was
57,
checked in by Sam Hocevar, 14 years ago
|
- Move each header to the same directory as its corresponding source, to
get a better idea of which files are likely to export symbols.
|
File size:
667 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Abuse - dark 2D side-scrolling platform game |
---|
3 | * Copyright (c) 1995 Crack dot Com |
---|
4 | * |
---|
5 | * This software was released into the Public Domain. As with most public |
---|
6 | * domain software, no warranty is made or implied by Crack dot Com or |
---|
7 | * Jonathan Clark. |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef BUS_TYPE_HPP |
---|
11 | #define BUS_TYPE_HPP |
---|
12 | |
---|
13 | #ifdef __sgi |
---|
14 | #define WORD_ALIGN 1 |
---|
15 | #endif |
---|
16 | |
---|
17 | #ifdef sun |
---|
18 | #define WORD_ALIGN 1 |
---|
19 | #endif |
---|
20 | |
---|
21 | #ifdef SUN3 |
---|
22 | #define WORD_ALIGN 1 |
---|
23 | #endif |
---|
24 | |
---|
25 | #ifdef SUN4 |
---|
26 | #define WORD_ALIGN 1 |
---|
27 | #endif |
---|
28 | |
---|
29 | #ifdef __sgi |
---|
30 | #define WORD_ALIGN 1 |
---|
31 | #endif |
---|
32 | |
---|
33 | #ifdef _AIX |
---|
34 | #define WORD_ALIGN 1 |
---|
35 | #endif |
---|
36 | |
---|
37 | #ifdef __sparc__ |
---|
38 | #define WORD_ALIGN 1 |
---|
39 | #endif |
---|
40 | |
---|
41 | #ifdef __arm__ |
---|
42 | #define WORD_ALIGN 1 |
---|
43 | #endif |
---|
44 | |
---|
45 | #endif // BUS_TYPE_HPP |
---|
Note: See
TracBrowser
for help on using the repository browser.