diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-14 12:26:00 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-15 20:19:48 +0100 |
commit | bb6646c299da3dde90b2e208ba0a7d5a71719a0c (patch) | |
tree | 4b5f3b3dc791a3c27e59fa3a10aefcbb95eb1c75 /i386/i386at/kd.c | |
parent | f9ed7a52c0384e523c1f02c684d6db575b920859 (diff) | |
download | gnumach-bb6646c299da3dde90b2e208ba0a7d5a71719a0c.tar.gz gnumach-bb6646c299da3dde90b2e208ba0a7d5a71719a0c.tar.bz2 gnumach-bb6646c299da3dde90b2e208ba0a7d5a71719a0c.zip |
Type definition
* i386/i386/ast_check.c (init_ast_check, cause_ast_check): Define return type.
* i386/i386/pic.c (intnull, prtnull): Define argument types.
* i386/i386at/com.c (compr_addr): Likewise.
(compr): Likewise.
(compr_addr): Fix printf format.
* i386/i386at/kd.c (kd_cmdreg_write, kd_kbd_magic): Define argument types.
* i386/i386at/kd_mouse.c (init_mouse_hw): Likewise.
* ipc/mach_port.c (sact_count): Define return type.
* ipc/mach_rpc.c (mach_port_rpc_sig): Define argument types.
* kern/act.c (dump_act): Define return type.
* kern/lock_mon.c (simple_lock, simple_lock_try, simple_unlock, lip, lock_info_sort, lock_info_clear, print_lock_info): Define return type.
(time_lock): Define return type and argument type.
* kern/timer.c (time_trap_uexit): Define argument type.
Diffstat (limited to 'i386/i386at/kd.c')
-rw-r--r-- | i386/i386at/kd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386at/kd.c b/i386/i386at/kd.c index a326626b..33d17992 100644 --- a/i386/i386at/kd.c +++ b/i386/i386at/kd.c @@ -2283,7 +2283,7 @@ int ch=KC_CMD_READ; } void -kd_cmdreg_write(val) +kd_cmdreg_write(int val) { int ch=KC_CMD_WRITE; @@ -2400,7 +2400,7 @@ static int which_button[] = {0, MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT}; static struct mouse_motion moved; int -kd_kbd_magic(scancode) +kd_kbd_magic(int scancode) { int new_button = 0; |