From 7cbb44a1d9c5e8792f5ee74f25259e874a0b4b32 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 14 Dec 1995 20:21:58 +0000 Subject: [PATCH] Fixed the type of some sysinit functions. --- sys/gnu/i386/fpemul/fpu_entry.c | 4 ++-- sys/i386/i386/math_emulate.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/gnu/i386/fpemul/fpu_entry.c b/sys/gnu/i386/fpemul/fpu_entry.c index d00a6de322f0..9c82eea13fa2 100644 --- a/sys/gnu/i386/fpemul/fpu_entry.c +++ b/sys/gnu/i386/fpemul/fpu_entry.c @@ -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"); diff --git a/sys/i386/i386/math_emulate.c b/sys/i386/i386/math_emulate.c index b182aafc95ed..a45f7a87748a 100644 --- a/sys/i386/i386/math_emulate.c +++ b/sys/i386/i386/math_emulate.c @@ -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");