Files
linux/arch/score/include/asm/extable.h
2016-10-05 18:38:39 -04:00

12 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