diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-13 03:35:09 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-13 03:35:09 +0000 |
commit | fdda23fcbc5e5178e7c42f48491e1303d0597195 (patch) | |
tree | e4300f1c3066f12475c3e2497e428d05283dcbe7 /sys/arch | |
parent | b48bdd523218b2fbe51c089d3a2d99a322bf063c (diff) |
getsecs() is in stand.h
move time_print() into libsa.h
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/stand/libsa/biosdev.h | 6 | ||||
-rw-r--r-- | sys/arch/i386/stand/libsa/libsa.h | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/i386/stand/libsa/biosdev.h b/sys/arch/i386/stand/libsa/biosdev.h index 08a39c8ce4f..a4b9a53fe51 100644 --- a/sys/arch/i386/stand/libsa/biosdev.h +++ b/sys/arch/i386/stand/libsa/biosdev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biosdev.h,v 1.16 1997/08/12 21:40:50 mickey Exp $ */ +/* $OpenBSD: biosdev.h,v 1.17 1997/08/13 03:35:08 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -53,7 +53,3 @@ void com_init __P((struct consdev *)); int com_getc __P((dev_t)); void com_putc __P((dev_t, int)); void com_pollc __P((dev_t, int)); - -/* time.c */ -void time_print __P((void)); -time_t getsecs __P((void)); diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h index 8ee08306dda..e8f65ce5bb2 100644 --- a/sys/arch/i386/stand/libsa/libsa.h +++ b/sys/arch/i386/stand/libsa/libsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libsa.h,v 1.12 1997/08/13 03:28:12 mickey Exp $ */ +/* $OpenBSD: libsa.h,v 1.13 1997/08/13 03:35:08 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -40,6 +40,7 @@ void devboot __P((dev_t, char *)); void *alloca __P((size_t)); void machdep __P((void)); int kentry __P((u_int, u_int)); +void time_print __P((void)); extern int boothowto; /* XXX filled in assumption that last file opened is kernel */ |