Add a local prototype for a called-from-asm function.

This commit is contained in:
thorpej 2004-08-29 17:36:46 +00:00
parent 4c0e18d694
commit f4d9e6500d

View File

@ -1,4 +1,4 @@
/* $NetBSD: ofw_irqhandler.c,v 1.3 2003/07/15 00:24:47 lukem Exp $ */
/* $NetBSD: ofw_irqhandler.c,v 1.4 2004/08/29 17:36:46 thorpej Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ofw_irqhandler.c,v 1.3 2003/07/15 00:24:47 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: ofw_irqhandler.c,v 1.4 2004/08/29 17:36:46 thorpej Exp $");
#include "opt_irqstats.h"
@ -472,6 +472,8 @@ enable_irq(irq)
* found for an interrupt.
*/
void stray_irqhandler(u_int); /* called from assembly */
void
stray_irqhandler(mask)
u_int mask;