trap.h revision 176770
1/* $FreeBSD: head/sys/powerpc/include/trap.h 176770 2008-03-03 13:20:52Z raj $ */
2
3#if defined(AIM)
4#include <machine/trap_aim.h>
5#elif defined(E500)
6#include <machine/trap_booke.h>
7#endif
8
9#ifndef LOCORE
10struct trapframe;
11void    trap(struct trapframe *);
12#endif
13