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:
parent
1c6726a407
commit
40317361f4
|
@ -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 OSs that use USL-style ioctl()s
|
* Handle the VT-switching interface for OSs that use USL-style ioctl()s
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue