mirror of
https://github.com/torvalds/linux.git
synced 2025-11-06 19:50:24 +02: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
|