xfree86: os-support: bsd: fix missing include of xf86_OSproc.h

Missing include of xf86_OSproc.h leads to missing prototype warnings.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1697>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-03-19 16:20:00 +01:00
parent 3cbc9eda07
commit cda799533f
2 changed files with 3 additions and 0 deletions

View File

@ -28,10 +28,12 @@
#endif #endif
#include <X11/X.h> #include <X11/X.h>
#include "xf86.h" #include "xf86.h"
#include "xf86Priv.h" #include "xf86Priv.h"
#include "xf86_os_support.h" #include "xf86_os_support.h"
#include "xf86_OSlib.h" #include "xf86_OSlib.h"
#include "xf86_OSproc.h"
/* /*
* Handle the VT-switching interface for BSD OSs that use USL-style ioctl()s. * Handle the VT-switching interface for BSD OSs that use USL-style ioctl()s.

View File

@ -36,6 +36,7 @@
#include "xf86Priv.h" #include "xf86Priv.h"
#include "xf86_os_support.h" #include "xf86_os_support.h"
#include "xf86_OSlib.h" #include "xf86_OSlib.h"
#include "xf86_OSproc.h"
#include <sys/utsname.h> #include <sys/utsname.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>