Reviewed by: Jordan
Submitted by: Rich Make conditionals on BIOSWAIT consistent with usage in io.c. If you had 'BOOTWAIT=0' in your /etc/make.conf then biosboot wouldn't compile. It was '#if' in io.c and '#ifdef' in probe_keyboard.c so I changed the latter to '#if'. Even if BOOTWAIT is undefined then '#if BOOTWAIT' becomes '#if 0' so it should compile either way with this change.
This commit is contained in:
parent
9c179e8e05
commit
aa336579e1
@ -42,13 +42,13 @@
|
||||
*
|
||||
* This grody hack brought to you by Bill Paul (wpaul@ctr.columbia.edu)
|
||||
*
|
||||
* $Id$
|
||||
* $Id: probe_keyboard.c,v 1.1 1995/01/20 07:48:25 wpaul Exp $
|
||||
*/
|
||||
|
||||
#include <machine/console.h>
|
||||
#include <machine/cpufunc.h>
|
||||
|
||||
#ifdef BOOTWAIT
|
||||
#if BOOTWAIT
|
||||
extern int delay1ms(void);
|
||||
#else
|
||||
int delay1ms()
|
||||
|
Loading…
Reference in New Issue
Block a user