1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171782

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_ */