xfree86: Silence compiler warnings about function prototypes
xf86Init.c:136: warning: function declaration isn't a prototype xf86Init.c:243: warning: function declaration isn't a prototype xf86Init.c:249: warning: function declaration isn't a prototype
This commit is contained in:
parent
4b96ba8ddf
commit
66fd05acd6
|
@ -132,7 +132,7 @@ static Bool formatsDone = FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void
|
static void
|
||||||
xf86PrintBanner()
|
xf86PrintBanner(void)
|
||||||
{
|
{
|
||||||
#if PRE_RELEASE
|
#if PRE_RELEASE
|
||||||
ErrorF("\n"
|
ErrorF("\n"
|
||||||
|
@ -239,13 +239,13 @@ xf86PrintBanner()
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
xf86PrintMarkers()
|
xf86PrintMarkers(void)
|
||||||
{
|
{
|
||||||
LogPrintMarkers();
|
LogPrintMarkers();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
DoModalias()
|
DoModalias(void)
|
||||||
{
|
{
|
||||||
int i = -1;
|
int i = -1;
|
||||||
char **vlist;
|
char **vlist;
|
||||||
|
|
Loading…
Reference in New Issue