Add prototypes for undefinedinstruction() and resethandler().

This commit is contained in:
bjh21 2001-11-16 13:12:06 +00:00
parent 83634e4e14
commit 6b12ec55b2
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: undefined.h,v 1.2 2001/03/11 16:18:40 bjh21 Exp $ */ /* $NetBSD: undefined.h,v 1.3 2001/11/16 13:12:06 bjh21 Exp $ */
/* /*
* Copyright (c) 1995-1996 Mark Brinicombe. * Copyright (c) 1995-1996 Mark Brinicombe.
@ -78,6 +78,10 @@ struct undefined_handler {
*/ */
void install_coproc_handler_static __P((int, struct undefined_handler *)); void install_coproc_handler_static __P((int, struct undefined_handler *));
/* Calls up to undefined.c from trap handlers */
void undefinedinstruction(struct trapframe *);
void resethandler(struct trapframe *);
#endif #endif
/* End of undefined.h */ /* End of undefined.h */