hooks.o is now a single object, rather than having separate hooks.o and

hooks_rm.o
This commit is contained in:
Michael Brown
2005-04-10 16:44:29 +00:00
parent 04a99841e6
commit dfb9c44994
3 changed files with 43 additions and 63 deletions

View File

@@ -1,14 +1,7 @@
#ifndef HOOKS_H
#define HOOKS_H
/* in hooks.o */
extern void arch_initialise ( struct i386_all_regs *regs,
void (*retaddr) (void) );
extern void arch_initialise ( struct i386_all_regs *regs );
extern void arch_main ( struct i386_all_regs *regs );
/* in hooks_rm.o */
extern void arch_rm_initialise ( struct i386_all_regs *regs,
void (*retaddr) (void) );
extern void arch_rm_main ( struct i386_all_regs *regs );
#endif /* HOOKS_H */