Add prototype for trap().

Approved by: re (blanket)
This commit is contained in:
Marcel Moolenaar 2007-08-07 18:39:28 +00:00
parent f7b55b6053
commit ad9503cd37

View File

@ -103,4 +103,11 @@
#define EXC_ALI_RST(dsisr) ((dsisr >> 5) & 0x1f) /* source or target */
#define EXC_ALI_RA(dsisr) (dsisr & 0x1f)
#ifndef LOCORE
struct trapframe;
void trap(struct trapframe *);
#endif
#endif /* _POWERPC_TRAP_H_ */