diff options
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/selection.c | 14 | ||||
-rw-r--r-- | xwayland/sockets.c | 16 | ||||
-rw-r--r-- | xwayland/xwayland.c | 16 | ||||
-rw-r--r-- | xwayland/xwm.c | 16 |
4 files changed, 31 insertions, 31 deletions
diff --git a/xwayland/selection.c b/xwayland/selection.c index 060c0baf..ffcde4d0 100644 --- a/xwayland/selection.c +++ b/xwayland/selection.c @@ -1,14 +1,14 @@ #define _XOPEN_SOURCE 700 +#include <assert.h> +#include <fcntl.h> #include <stdlib.h> -#include <unistd.h> #include <string.h> -#include <assert.h> +#include <unistd.h> +#include <wlr/types/wlr_data_device.h> +#include <wlr/types/wlr_primary_selection.h> +#include <wlr/util/log.h> +#include <wlr/xwm.h> #include <xcb/xfixes.h> -#include <fcntl.h> -#include "wlr/util/log.h" -#include "wlr/types/wlr_data_device.h" -#include "wlr/types/wlr_primary_selection.h" -#include "wlr/xwm.h" static const size_t incr_chunk_size = 64 * 1024; diff --git a/xwayland/sockets.c b/xwayland/sockets.c index 2119056d..1e943b1d 100644 --- a/xwayland/sockets.c +++ b/xwayland/sockets.c @@ -3,19 +3,19 @@ // for SOCK_CLOEXEC #define __BSD_VISIBLE 1 #endif -#include <stdlib.h> +#include <errno.h> +#include <fcntl.h> +#include <signal.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <signal.h> -#include <unistd.h> +#include <stdlib.h> #include <sys/socket.h> +#include <sys/stat.h> +#include <sys/types.h> #include <sys/un.h> -#include <errno.h> -#include "wlr/util/log.h" +#include <unistd.h> +#include <wlr/util/log.h> #include "sockets.h" static const char *lock_fmt = "/tmp/.X%d-lock"; diff --git a/xwayland/xwayland.c b/xwayland/xwayland.c index 74555edb..1d935180 100644 --- a/xwayland/xwayland.c +++ b/xwayland/xwayland.c @@ -4,23 +4,23 @@ // for SOCK_CLOEXEC #define __BSD_VISIBLE 1 #endif -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> +#include <errno.h> #include <fcntl.h> #include <signal.h> +#include <stdio.h> +#include <stdlib.h> +#include <stdlib.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/wait.h> #include <time.h> -#include <stdlib.h> -#include <errno.h> +#include <unistd.h> #include <wayland-server.h> -#include <wlr/xwayland.h> #include <wlr/util/log.h> -#include "util/signal.h" +#include <wlr/xwayland.h> +#include <wlr/xwm.h> #include "sockets.h" -#include "wlr/xwm.h" +#include "util/signal.h" #ifdef __FreeBSD__ static inline int clearenv(void) { diff --git a/xwayland/xwm.c b/xwayland/xwm.c index 425188c7..10bc2e30 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -3,18 +3,18 @@ #endif #include <stdlib.h> #include <unistd.h> -#include <xcb/composite.h> -#include <xcb/xfixes.h> -#include <xcb/xcb_image.h> -#include <xcb/render.h> #include <wlr/config.h> -#include <wlr/util/log.h> -#include <wlr/util/edges.h> -#include "util/signal.h" #include <wlr/types/wlr_surface.h> -#include <wlr/xwayland.h> +#include <wlr/util/edges.h> +#include <wlr/util/log.h> #include <wlr/xcursor.h> +#include <wlr/xwayland.h> #include <wlr/xwm.h> +#include <xcb/composite.h> +#include <xcb/render.h> +#include <xcb/xcb_image.h> +#include <xcb/xfixes.h> +#include "util/signal.h" #ifdef WLR_HAS_XCB_ICCCM #include <xcb/xcb_icccm.h> |