diff options
Diffstat (limited to 'include/device/input.h')
-rw-r--r-- | include/device/input.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/device/input.h b/include/device/input.h index 3f8435a6..9de73a30 100644 --- a/include/device/input.h +++ b/include/device/input.h @@ -42,8 +42,8 @@ #define _IOW(g,n,t) _IOC(IOC_IN, (g), (n), sizeof(t)) #define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t)) -typedef u_char Scancode; -typedef u_short kev_type; /* kd event type */ +typedef uint8_t Scancode; +typedef uint16_t kev_type; /* kd event type */ /* (used for event records) */ struct mouse_motion { |