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:
parent
64b961bb21
commit
27c5966de3
|
@ -1,5 +1,5 @@
|
||||||
static void
|
static void
|
||||||
__noop_to_appease_ar__()
|
__noop_to_appease_ar__(void)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ xf86GARTCloseScreen(int screenNum)
|
||||||
}
|
}
|
||||||
|
|
||||||
Bool
|
Bool
|
||||||
xf86AgpGARTSupported()
|
xf86AgpGARTSupported(void)
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,13 +36,13 @@
|
||||||
#include "xf86_OSlib.h"
|
#include "xf86_OSlib.h"
|
||||||
|
|
||||||
Bool
|
Bool
|
||||||
xf86EnableIO()
|
xf86EnableIO(void)
|
||||||
{
|
{
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86DisableIO()
|
xf86DisableIO(void)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,12 +5,12 @@
|
||||||
#include "xf86_OSlib.h"
|
#include "xf86_OSlib.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86OpenConsole()
|
xf86OpenConsole(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86CloseConsole()
|
xf86CloseConsole(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,6 +21,6 @@ xf86ProcessArgument(int argc, char *argv[], int i)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86UseMsg()
|
xf86UseMsg(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue