| Commit | Line | Data |
|---|---|---|
| eeab7066 RT |
1 | /* |
| 2 | ||
| 3 | This code was written as part of the CMU Common Lisp project at | |
| 4 | Carnegie Mellon University, and has been placed in the public domain. | |
| 5 | ||
| 6 | */ | |
| 62957726 | 7 | |
| e67c0397 | 8 | #ifndef _VALIDATE_H_ |
| 9 | #define _VALIDATE_H_ | |
| 62957726 | 10 | |
| 11 | #ifdef parisc | |
| 12 | #include "hppa-validate.h" | |
| 48cccfec | 13 | #endif |
| 62957726 | 14 | |
| 15 | #ifdef mips | |
| 16 | #include "mips-validate.h" | |
| 17 | #endif | |
| 18 | ||
| 19 | #ifdef ibmrt | |
| 20 | #include "rt-validate.h" | |
| 21 | #endif | |
| 22 | ||
| 23 | #ifdef sparc | |
| 24 | #include "sparc-validate.h" | |
| 25 | #endif | |
| 26 | ||
| edb24260 | 27 | #if defined(i386) || defined(__x86_64) |
| 62957726 | 28 | #include "x86-validate.h" |
| 29 | #endif | |
| 30 | ||
| 6f4a04e5 | 31 | #ifdef alpha |
| 32 | #include "alpha-validate.h" | |
| 33 | #endif | |
| 34 | ||
| eb44537a | 35 | #ifdef ppc |
| 36 | #include "ppc-validate.h" | |
| 37 | #endif | |
| 38 | ||
| 62957726 | 39 | extern void validate(void); |
| 40 | ||
| e67c0397 | 41 | #endif /* _VALIDATE_H_ */ |