diff options
author | phk <phk@FreeBSD.org> | 1997-09-24 07:44:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-09-24 07:44:34 +0000 |
commit | edf92c1ecfc9f94e6fe4f09e373b8441d5d6bf7f (patch) | |
tree | d329d7cf9c83f9a08e812c50c88a97db53a2092e | |
parent | 592265b9c7ee8b9c0427d6465021bca46582c4d8 (diff) | |
download | FreeBSD-src-edf92c1ecfc9f94e6fe4f09e373b8441d5d6bf7f.zip FreeBSD-src-edf92c1ecfc9f94e6fe4f09e373b8441d5d6bf7f.tar.gz |
Add a missing prototype.
Nagged about by: joerg
-rw-r--r-- | sys/i386/boot/biosboot/boot.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/i386/boot/biosboot/boot.h b/sys/i386/boot/biosboot/boot.h index 39eb9df..e0907c2 100644 --- a/sys/i386/boot/biosboot/boot.h +++ b/sys/i386/boot/biosboot/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id: boot.h,v 1.20 1997/07/12 10:23:17 joerg Exp $ + * $Id: boot.h,v 1.21 1997/08/31 06:11:26 phk Exp $ */ #include <sys/param.h> @@ -63,6 +63,7 @@ int getc(void); int ischar(void); int get_diskinfo(int drive); int memsize(int extended); +void vesa_mode(int mode); /* boot.c */ void boot(int drive); |