trap.h revision 176770
1219019Sgabor/* $FreeBSD: head/sys/powerpc/include/trap.h 176770 2008-03-03 13:20:52Z raj $ */
2219019Sgabor
3219019Sgabor#if defined(AIM)
4219019Sgabor#include <machine/trap_aim.h>
5219019Sgabor#elif defined(E500)
6219019Sgabor#include <machine/trap_booke.h>
7219019Sgabor#endif
8219019Sgabor
9219019Sgabor#ifndef LOCORE
10struct trapframe;
11void    trap(struct trapframe *);
12#endif
13