mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
11 lines
210 B
C
11 lines
210 B
C
#ifndef _ASM_SCORE_EXTABLE_H
|
|
#define _ASM_SCORE_EXTABLE_H
|
|
|
|
struct exception_table_entry {
|
|
unsigned long insn;
|
|
unsigned long fixup;
|
|
};
|
|
|
|
struct pt_regs;
|
|
extern int fixup_exception(struct pt_regs *regs);
|
|
#endif
|