Make type explicit for egcs, from Erik Bertelsen in PR 5288.
This commit is contained in:
parent
9a7810a03e
commit
d87f21702e
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: adb.c,v 1.22 1998/03/27 06:10:54 scottr Exp $ */
|
||||
/* $NetBSD: adb.c,v 1.23 1998/04/13 02:36:24 scottr Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 1994 Bradley A. Grantham
|
||||
@ -90,6 +90,9 @@ static int adb_rptinterval = 6; /* ticks between auto-repeat */
|
||||
static int adb_repeating = -1; /* key that is auto-repeating */
|
||||
static adb_event_t adb_rptevent;/* event to auto-repeat */
|
||||
|
||||
/* Mouse button state */
|
||||
static int adb_ms_buttons = 0;
|
||||
|
||||
/* Driver definition. -- This should probably be a bus... */
|
||||
struct cfattach adb_ca = {
|
||||
sizeof(struct device), adbmatch, adbattach
|
||||
@ -215,8 +218,6 @@ adb_dokeyupdown(event)
|
||||
adb_handoff(event);
|
||||
}
|
||||
|
||||
static adb_ms_buttons = 0;
|
||||
|
||||
void
|
||||
adb_keymaybemouse(event)
|
||||
adb_event_t *event;
|
||||
|
Loading…
Reference in New Issue
Block a user