Subject: Re: inconsistencies in -current
To: Taras Ivanenko <ivanenko@ctpa03.mit.edu>
From: Scott Reynolds <scottr@edsi.org>
List: port-mac68k
Date: 10/16/1996 13:15:11
On Wed, 16 Oct 1996, Taras Ivanenko wrote:

> I gad a lood luck to build config before trying to make the -current
> kernel and I noticed few inconsistencies in it.

Yes, I noticed and corrected these already.  However:

> in file /usr/src/sys/arch/m68k/fpe/fpu_emulate.c:53 the declaration is 
> int	fusword __P((void *)); 
> but sys/systm.h says:
> short	fusword __P((const void *));

Neither is correct, in fact.  Remove the declaration in fpu_emulate.c (and
the one in fpu_calcea.c, too), and modify sys/systm.h to say: 

int	fusword __P((const void *));

--scott