diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-17 23:15:50 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-17 23:15:50 +0000 |
commit | e2e97b2b172503c90fea70ef574bcf74353e7671 (patch) | |
tree | b844fe9270e6bc52123fac71d8a8bbaff6ce2e54 /sys/arch | |
parent | 5a763f0c936dfa75b086cc4ea802f773fb9990a5 (diff) |
proper includes
apm prototypes/declarations
some prototypes
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/stand/libsa/libsa.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h index 2ee0f64b1e1..c12cb8561d7 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.7 1997/05/01 04:10:39 mickey Exp $ */ +/* $OpenBSD: libsa.h,v 1.8 1997/07/17 23:15:49 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -32,16 +32,19 @@ * */ -#include <stand.h> +#include <lib/libsa/stand.h> void gateA20 __P((int)); void memprobe __P((void)); void devboot __P((dev_t, char *)); void *alloca __P((size_t)); +void machdep __P((void)); +u_int apm_init __P((void)); extern u_long codeseg; extern int boothowto; /* XXX filled in assumption that last file opened is kernel */ extern int bootdev; extern u_int cnvmem, extmem; +extern struct apm_connect_info apminfo; extern const char bdevs[19][4]; |