mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-05 15:32:49 +00:00
xnest: ANSI cleanups
This commit is contained in:
@@ -174,7 +174,7 @@ ddxProcessArgument (int argc, char *argv[], int i)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void ddxUseMsg()
|
||||
void ddxUseMsg(void)
|
||||
{
|
||||
ErrorF("-display string display name of the real server\n");
|
||||
ErrorF("-sync sinchronize with the real server\n");
|
||||
|
||||
@@ -45,7 +45,7 @@ CARD32 lastEventTime = 0;
|
||||
extern EventList *xnestEvents;
|
||||
|
||||
void
|
||||
ProcessInputEvents()
|
||||
ProcessInputEvents(void)
|
||||
{
|
||||
mieqProcessInputEvents();
|
||||
}
|
||||
|
||||
@@ -107,14 +107,14 @@ InitInput(int argc, char *argv[])
|
||||
/*
|
||||
* DDX - specific abort routine. Called by AbortServer().
|
||||
*/
|
||||
void AbortDDX()
|
||||
void AbortDDX(void)
|
||||
{
|
||||
xnestDoFullGeneration = True;
|
||||
xnestCloseDisplay();
|
||||
}
|
||||
|
||||
/* Called by GiveUp(). */
|
||||
void ddxGiveUp()
|
||||
void ddxGiveUp(void)
|
||||
{
|
||||
AbortDDX();
|
||||
}
|
||||
@@ -126,12 +126,12 @@ DarwinHandleGUI(int argc, char *argv[])
|
||||
}
|
||||
#endif
|
||||
|
||||
void OsVendorInit()
|
||||
void OsVendorInit(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
void OsVendorFatalError()
|
||||
void OsVendorFatalError(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user