mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-08 05:24:32 -05:00
12 lines
210 B
C
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
|