Fixed the type of some sysinit functions.

This commit is contained in:
Bruce Evans 1995-12-14 20:21:58 +00:00
parent d9ed07695e
commit 7cbb44a1d9
2 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@
*
* W. Metzenthen June 1994.
*
* $Id: fpu_entry.c,v 1.6 1995/05/30 07:57:45 rgrimes Exp $
* $Id: fpu_entry.c,v 1.7 1995/12/14 08:21:17 phk Exp $
*
*/
@ -520,7 +520,7 @@ gnufpu(struct lkm_table *lkmtp, int cmd, int ver)
#else /* !LKM */
static void
gnufpu_init(void)
gnufpu_init(void *unused)
{
if (pmath_emulate)
printf("Another Math emulator already present\n");

View File

@ -6,7 +6,7 @@
* [expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj]
*
* from: 386BSD 0.1
* $Id: math_emulate.c,v 1.15 1995/12/07 12:45:33 davidg Exp $
* $Id: math_emulate.c,v 1.16 1995/12/14 08:21:27 phk Exp $
*/
/*
@ -1582,7 +1582,7 @@ fpu(struct lkm_table *lkmtp, int cmd, int ver)
#else /* !LKM */
static void
fpu_init(void)
fpu_init(void *unused)
{
if (pmath_emulate)
printf("Another Math emulator already present\n");