diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-22 19:59:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-22 19:59:50 +0000 |
commit | e9e2807902522b03bab50413d320082165d45e98 (patch) | |
tree | 6183a5268138a4b9f9f307a478aa868597121432 /sys/arch | |
parent | b8dc7a7a362581bc009cebd133d69cea0b24129d (diff) |
prototypes; ryker
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mac68k/dev/adb_direct.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/adb_direct.c b/sys/arch/mac68k/dev/adb_direct.c index 784b105457a..51575ec3339 100644 --- a/sys/arch/mac68k/dev/adb_direct.c +++ b/sys/arch/mac68k/dev/adb_direct.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adb_direct.c,v 1.8 1997/04/22 23:50:05 gene Exp $ */ +/* $OpenBSD: adb_direct.c,v 1.9 1998/04/22 19:59:49 deraadt Exp $ */ /* $NetBSD: adb_direct.c,v 1.5 1997/04/21 18:04:28 scottr Exp $ */ /* From: adb_direct.c 2.02 4/18/97 jpw */ @@ -57,6 +57,13 @@ typedef unsigned char u_char; #endif + +#ifdef MRG_ADB +int adb_poweroff __P((void)); +int adb_read_date_time __P((unsigned long *t)); +int adb_set_date_time __P((unsigned long t)); +#endif + /* more verbose for testing */ /*#define DEBUG*/ |