Clean up RCS ids
[projects/cmucl/cmucl.git] / src / lisp / validate.h
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 */
7
8 #ifndef _VALIDATE_H_
9 #define _VALIDATE_H_
10
11 #ifdef parisc
12 #include "hppa-validate.h"
13 #endif
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
27 #if defined(i386) || defined(__x86_64)
28 #include "x86-validate.h"
29 #endif
30
31 #ifdef alpha
32 #include "alpha-validate.h"
33 #endif
34
35 #ifdef ppc
36 #include "ppc-validate.h"
37 #endif
38
39 extern void validate(void);
40
41 #endif /* _VALIDATE_H_ */