diff options
author | Blue Swirl | 2011-01-23 17:21:20 +0100 |
---|---|---|
committer | Blue Swirl | 2011-01-23 17:21:20 +0100 |
commit | 64b85a8f2359ca3a995499afaf3c87d8e036e030 (patch) | |
tree | c8f8396df5fde32181b5e93f241b64c604cf5df5 /ui/x_keymap.h | |
parent | gdbstub-xml: avoid a warning from sparse (diff) | |
download | qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.gz qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.xz qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.zip |
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete
them.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'ui/x_keymap.h')
-rw-r--r-- | ui/x_keymap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/x_keymap.h b/ui/x_keymap.h index 2042ce0ed2..afde2e94bf 100644 --- a/ui/x_keymap.h +++ b/ui/x_keymap.h @@ -25,8 +25,8 @@ #ifndef QEMU_X_KEYMAP_H #define QEMU_X_KEYMAP_H -extern uint8_t translate_xfree86_keycode(const int key); +uint8_t translate_xfree86_keycode(const int key); -extern uint8_t translate_evdev_keycode(const int key); +uint8_t translate_evdev_keycode(const int key); #endif |