xfree86: os-support: fix old-style function definition warnings

Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Yaakov Selkowitz 2012-10-15 01:25:17 -05:00
parent 64b961bb21
commit 27c5966de3
4 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
static void
__noop_to_appease_ar__()
__noop_to_appease_ar__(void)
{
return;
}

View File

@ -47,7 +47,7 @@ xf86GARTCloseScreen(int screenNum)
}
Bool
xf86AgpGARTSupported()
xf86AgpGARTSupported(void)
{
return FALSE;
}

View File

@ -36,13 +36,13 @@
#include "xf86_OSlib.h"
Bool
xf86EnableIO()
xf86EnableIO(void)
{
return TRUE;
}
void
xf86DisableIO()
xf86DisableIO(void)
{
return;
}

View File

@ -5,12 +5,12 @@
#include "xf86_OSlib.h"
void
xf86OpenConsole()
xf86OpenConsole(void)
{
}
void
xf86CloseConsole()
xf86CloseConsole(void)
{
}
@ -21,6 +21,6 @@ xf86ProcessArgument(int argc, char *argv[], int i)
}
void
xf86UseMsg()
xf86UseMsg(void)
{
}