Make yeartonum/numtoyear visible.

This commit is contained in:
ragge 2000-07-26 11:54:32 +00:00
parent c034e1d483
commit 550bb5fbb2
2 changed files with 8 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: clock.h,v 1.4 1999/09/06 19:52:53 ragge Exp $ */
/* $NetBSD: clock.h,v 1.5 2000/07/26 11:54:34 ragge Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -69,7 +69,9 @@ extern volatile short *clk_page;
extern int clk_adrshift, clk_tweak;
/* Prototypes */
int generic_clkread __P((time_t));
void generic_clkwrite __P((void));
int chip_clkread __P((time_t));
void chip_clkwrite __P((void));
int generic_clkread(time_t);
void generic_clkwrite(void);
int chip_clkread(time_t);
void chip_clkwrite(void);
int yeartonum(int);
int numtoyear(int);

View File

@ -1,4 +1,4 @@
/* $NetBSD: clock.c,v 1.37 2000/06/12 11:13:15 ragge Exp $ */
/* $NetBSD: clock.c,v 1.38 2000/07/26 11:54:32 ragge Exp $ */
/*
* Copyright (c) 1995 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -45,9 +45,6 @@
#include "opt_cputype.h"
int yeartonum __P((int));
int numtoyear __P((int));
struct evcnt clock_intrcnt =
EVCNT_INITIALIZER(EVCNT_TYPE_INTR, NULL, "clock", "intr");