Skip to content
validate.h 530 B
Newer Older
cwang's avatar
cwang committed
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/validate.h,v 1.4 2004/05/18 22:22:59 cwang Exp $ */
wlott's avatar
wlott committed

#if !defined(_INCLUDE_VALIDATE_H_)
#define _INCLUDE_VALIDATE_H_

#ifdef parisc
#include "hppa-validate.h"
wlott's avatar
wlott committed

#ifdef mips
#include "mips-validate.h"
#endif

#ifdef ibmrt
#include "rt-validate.h"
#endif

#ifdef sparc
#include "sparc-validate.h"
#endif

cwang's avatar
cwang committed
#if defined(i386) || defined(__x86_64)
wlott's avatar
wlott committed
#include "x86-validate.h"
#endif

hallgren's avatar
hallgren committed
#ifdef alpha
#include "alpha-validate.h"
#endif

wlott's avatar
wlott committed
extern void validate(void);

#endif