Need <sys/systm.h> for declaration, and make argument declarations match.

This commit is contained in:
kleink 2000-06-08 07:29:22 +00:00
parent d8dcb11d4f
commit c2715f98ce
2 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fubyte.c,v 1.1 1996/09/30 16:34:45 ws Exp $ */
/* $NetBSD: fubyte.c,v 1.2 2000/06/08 07:29:22 kleink Exp $ */
/*-
* Copyright (C) 1993 Wolfgang Solfrank.
@ -31,12 +31,14 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/systm.h>
/*
* Emulate fubyte.
*/
int
fubyte(addr)
char *addr;
const void *addr;
{
unsigned char c;

View File

@ -1,4 +1,4 @@
/* $NetBSD: fuswintr.c,v 1.1 1996/09/30 16:34:45 ws Exp $ */
/* $NetBSD: fuswintr.c,v 1.2 2000/06/08 07:29:54 kleink Exp $ */
/*-
* Copyright (C) 1994 Wolfgang Solfrank.
@ -31,6 +31,8 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/systm.h>
/*
* Emulate fuswintr
*
@ -38,7 +40,7 @@
*/
int
fuswintr(addr)
char *addr;
const void *addr;
{
return -1;
}