Fix missing include and signature mismatch on gentoo linux

This commit is contained in:
kohnish
2025-10-17 00:01:38 +02:00
committed by Enrico Weigelt
parent 437515032b
commit 166dec4701
2 changed files with 2 additions and 1 deletions

View File

@@ -54,7 +54,7 @@ ddxInputThreadInit(void)
#endif
void
InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv)
InitOutput(int argc, char **argv)
{
if (serverGeneration == 1)
ephyrExtensionInit();

View File

@@ -32,6 +32,7 @@
#include <X11/XF86keysym.h>
#endif
#include <stdio.h>
#include <signal.h>
#include <sys/file.h> /* needed for FNONBLOCK & FASYNC */
#include <X11/extensions/XI.h>