2008-01-03 Pavel Roskin <proski@gnu.org>

* kern/i386/linuxbios/init.c: Put "void" to all function
	declarations with no arguments.
	* kern/powerpc/ieee1275/init.c: Likewise.
	* term/i386/pc/at_keyboard.c: Likewise.
	* term/i386/pc/vga_text.c: Likewise.
	* util/grub-mkdevicemap.c: Likewise.
This commit is contained in:
proski 2008-01-03 22:43:46 +00:00
parent b9416d00ad
commit 97eab9176c
6 changed files with 20 additions and 11 deletions

View file

@ -123,7 +123,7 @@ grub_keyboard_isr (char key)
/* If there is a raw key pending, return it; otherwise return -1. */
static int
grub_keyboard_getkey ()
grub_keyboard_getkey (void)
{
grub_uint8_t key;
if (KEYBOARD_ISREADY (grub_inb (KEYBOARD_REG_STATUS)))
@ -137,7 +137,7 @@ grub_keyboard_getkey ()
/* If there is a character pending, return it; otherwise return -1. */
int
grub_console_checkkey ()
grub_console_checkkey (void)
{
int key;
key = grub_keyboard_getkey ();
@ -171,7 +171,7 @@ grub_console_checkkey ()
}
int
grub_console_getkey ()
grub_console_getkey (void)
{
int key;
do