From c31c5c44b04088f084e06e1fe17186d251de5ba9 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 17 Aug 1998 18:47:36 +0000 Subject: [PATCH] Fixed a type mismatch. Fixed a missing extern declaration (bug for bug compatibly including style bugs. Should probably be static). --- sys/i386/isa/loran.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/i386/isa/loran.c b/sys/i386/isa/loran.c index f58f062470fa..4e1a1b7ed9ce 100644 --- a/sys/i386/isa/loran.c +++ b/sys/i386/isa/loran.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: loran.c,v 1.5 1998/05/29 08:04:44 phk Exp $ + * $Id: loran.c,v 1.6 1998/06/07 20:36:40 phk Exp $ * * This device-driver helps the userland controlprogram for a LORAN-C * receiver avoid monopolizing the CPU. @@ -214,6 +214,7 @@ static int lorantc_magic; /**********************************************************************/ static int loranprobe (struct isa_device *dvp); +extern void init_tgc (void); static int loranattach (struct isa_device *isdp); static void loranenqueue (struct datapoint *); static d_open_t loranopen; @@ -545,7 +546,7 @@ loranintr(int unit) /**********************************************************************/ static unsigned -loran_get_timecount(void) +loran_get_timecount(struct timecounter *tc) { unsigned count; u_long ef;