diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-25 20:41:46 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-27 00:00:50 +0100 |
commit | 84e0fb3f287864eca3a9322ef364b913f6a260bd (patch) | |
tree | 123333bce32a7d57c5112aa0d4c07b12821b6305 /i386/i386at/kd_event.c | |
parent | 63eefc08b5e762937118254ad0b82583cc38a2d2 (diff) | |
download | gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.gz gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.bz2 gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.zip |
Fix some warnings with -Wmissing-prototypes.
Marked some functions as static (private) as needed and added missing
includes.
This also revealed some dead code which was removed.
Note that -Wmissing-prototypes is not enabled here since there is a
bunch more warnings.
Message-Id: <Y6j72lWRL9rsYy4j@mars>
Diffstat (limited to 'i386/i386at/kd_event.c')
-rw-r--r-- | i386/i386at/kd_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386at/kd_event.c b/i386/i386at/kd_event.c index 518e4859..5b1f7098 100644 --- a/i386/i386at/kd_event.c +++ b/i386/i386at/kd_event.c @@ -90,7 +90,7 @@ static boolean_t initialized = FALSE; * kbdinit - set up event queue. */ -void +static void kbdinit(void) { spl_t s = SPLKD(); @@ -304,7 +304,7 @@ kbd_enqueue(kd_event *ev) u_int X_kdb_enter_str[512], X_kdb_exit_str[512]; int X_kdb_enter_len = 0, X_kdb_exit_len = 0; -void +static void kdb_in_out(const u_int *p) { int t = p[0]; |