diff options
author | Scott Anderson <ascent12@hotmail.com> | 2017-05-01 15:50:19 +1200 |
---|---|---|
committer | Scott Anderson <ascent12@hotmail.com> | 2017-05-01 15:50:19 +1200 |
commit | 9ac46ec5ed6ba67a8c684069f8255384f6acd18b (patch) | |
tree | 723b04a2b6c5e17e4640caf3019feef196cc10f1 /backend/drm/udev.c | |
parent | 95a553dc51029406f9b52227e88ebd9f67b203a5 (diff) |
Got it to build
Diffstat (limited to 'backend/drm/udev.c')
-rw-r--r-- | backend/drm/udev.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/backend/drm/udev.c b/backend/drm/udev.c index 1efa26c2..5f20a1be 100644 --- a/backend/drm/udev.c +++ b/backend/drm/udev.c @@ -1,3 +1,5 @@ +#define _POSIX_C_SOURCE 200809L + #include <libudev.h> #include <stdbool.h> #include <stdlib.h> @@ -6,10 +8,10 @@ #include <xf86drm.h> #include <xf86drmMode.h> -#include "otd.h" -#include "udev.h" -#include "session.h" -#include "drm.h" +#include "backend/drm/otd.h" +#include "backend/drm/udev.h" +#include "backend/drm/session.h" +#include "backend/drm/drm.h" static bool device_is_kms(struct otd *otd, struct udev_device *dev) { |