diff options
Diffstat (limited to 'sys/arch/i386/stand/libsa/libsa.h')
-rw-r--r-- | sys/arch/i386/stand/libsa/libsa.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h index e423af1810b..01b764dfc0b 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.19 1997/10/17 18:46:57 weingart Exp $ */ +/* $OpenBSD: libsa.h,v 1.20 1997/10/18 00:33:16 weingart Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -33,17 +33,23 @@ */ #include <lib/libsa/stand.h> +#include <machine/biosvar.h> void gateA20 __P((int)); + void smpprobe __P((void)); void memprobe __P((void)); void diskprobe __P((void)); void apmprobe __P((void)); + void devboot __P((dev_t, char *)); void *alloca __P((size_t)); void machdep __P((void)); void time_print __P((void)); +bios_diskinfo_t *diskfind __P((int)); + + extern const char bdevs[][4]; extern const int nbdevs; extern int bootdev; /* XXX pass through the global to exec_i386 */ |