diff options
Diffstat (limited to 'xcursor')
-rw-r--r-- | xcursor/meson.build | 2 | ||||
-rw-r--r-- | xcursor/wlr_xcursor.c | 6 | ||||
-rw-r--r-- | xcursor/xcursor.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/xcursor/meson.build b/xcursor/meson.build index afaab915..31040a92 100644 --- a/xcursor/meson.build +++ b/xcursor/meson.build @@ -1,8 +1,8 @@ lib_wlr_xcursor = static_library( 'wlr_xcursor', files( - 'xcursor.c', 'wlr_xcursor.c', + 'xcursor.c', ), include_directories: wlr_inc, dependencies: [egl] # header required via include/wlr/render.h diff --git a/xcursor/wlr_xcursor.c b/xcursor/wlr_xcursor.c index 2d1a38b5..7fcdbb6f 100644 --- a/xcursor/wlr_xcursor.c +++ b/xcursor/wlr_xcursor.c @@ -24,12 +24,12 @@ */ #define _XOPEN_SOURCE 500 -#include <wlr/xcursor.h> -#include <wlr/util/log.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> -#include <stdint.h> #include <string.h> +#include <wlr/util/log.h> +#include <wlr/xcursor.h> #include "xcursor/xcursor.h" static void wlr_xcursor_destroy(struct wlr_xcursor *cursor) { diff --git a/xcursor/xcursor.c b/xcursor/xcursor.c index 8dc35a7c..32711105 100644 --- a/xcursor/xcursor.c +++ b/xcursor/xcursor.c @@ -24,11 +24,11 @@ */ #define _DEFAULT_SOURCE -#include "xcursor/xcursor.h" +#include <dirent.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <dirent.h> +#include "xcursor/xcursor.h" /* * From libXcursor/include/X11/extensions/Xcursor.h |