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>
(cherry picked from commit cda799533f)
This commit is contained in:
Enrico Weigelt, metux IT consult
2024-03-19 16:20:00 +01:00
committed by Alan Coopersmith
parent f1802c5458
commit 8721189d46
2 changed files with 3 additions and 0 deletions

View File

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

View File

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