Stick a prototype for handleclock() in machine/clock.h and include it

interrupt.c to quiet a warning.
This commit is contained in:
John Baldwin 2001-03-24 06:20:48 +00:00
parent fb52a2c4e1
commit 197855a3ea
2 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@
#include <sys/ktr.h>
#include <sys/mutex.h>
#include <machine/clock.h>
#include <machine/reg.h>
#include <machine/frame.h>
#include <machine/intr.h>

View File

@ -18,6 +18,7 @@ extern int adjkerntz;
int sysbeep __P((int pitch, int period));
int acquire_timer2 __P((int mode));
int release_timer2 __P((void));
void handleclock __P((void *arg));
#endif