]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
terminal: fix include ordering
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Fri, 29 May 2015 22:01:18 +0000 (00:01 +0200)
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Fri, 29 May 2015 22:02:29 +0000 (00:02 +0200)
12 files changed:
src/libsystemd-terminal/grdev-drm.c
src/libsystemd-terminal/grdev-internal.h
src/libsystemd-terminal/grdev.c
src/libsystemd-terminal/grdev.h
src/libsystemd-terminal/idev-evdev.c
src/libsystemd-terminal/idev-internal.h
src/libsystemd-terminal/idev-keyboard.c
src/libsystemd-terminal/idev.c
src/libsystemd-terminal/idev.h
src/libsystemd-terminal/sysview-internal.h
src/libsystemd-terminal/sysview.c
src/libsystemd-terminal/sysview.h

index 01a70fd32006f0a0d71e6872cb4bae0b5610b4e9..4cee95f46926912500efc9c7f6a8fc40230a99bb 100644 (file)
@@ -27,8 +27,6 @@
 #include <sys/ioctl.h>
 #include <sys/mman.h>
 #include <sys/types.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
 #include <unistd.h>
 
 /* Yuck! DRM headers need system headers included first.. but we have to
 #include <drm_fourcc.h>
 #include <drm_mode.h>
 
-#include "bus-util.h"
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
-#include "grdev.h"
-#include "grdev-internal.h"
 #include "macro.h"
 #include "util.h"
+#include "bus-util.h"
+#include "grdev.h"
+#include "grdev-internal.h"
 
 #define GRDRM_MAX_TRIES (16)
 
index f455dd41724a9339829f607cc1eae589e20526d4..46d65f0248bf25022c1cdba67d351c4c0c1b769c 100644 (file)
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
-#include "grdev.h"
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
 #include "list.h"
 #include "util.h"
+#include "grdev.h"
 
 typedef struct grdev_tile               grdev_tile;
 typedef struct grdev_display_cache      grdev_display_cache;
index feed579295e17206ee00889c7265559e3905772d..c386e65982aa7d882f301b60c2c6abc3fea2f2ed 100644 (file)
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
-#include "grdev.h"
-#include "grdev-internal.h"
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
 #include "login-shared.h"
 #include "macro.h"
 #include "util.h"
+#include "grdev.h"
+#include "grdev-internal.h"
 
 static void pipe_enable(grdev_pipe *pipe);
 static void pipe_disable(grdev_pipe *pipe);
index db2a508fd8e61f60afbcd9b7e732265d945a2693..110d24e6d5afc86ba3331f70e0265c142f88457c 100644 (file)
@@ -56,8 +56,8 @@
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "util.h"
 
 typedef struct grdev_fb                 grdev_fb;
index 64e703eb67246872c3d8f1a250f4cd4b312106a3..f1a18b91d3b47bc44c787cc6f448a8dd007f8e82 100644 (file)
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
+#include "sd-bus.h"
+#include "sd-event.h"
+#include "macro.h"
+#include "util.h"
 #include "bus-util.h"
 #include "idev.h"
 #include "idev-internal.h"
-#include "macro.h"
-#include "util.h"
 
 typedef struct idev_evdev idev_evdev;
 typedef struct unmanaged_evdev unmanaged_evdev;
index a159aef211a8922bfaa534afec1f0e57907f05ad..a02a16c408fda3cf66f6b54428bf7647ec391934 100644 (file)
 #include <linux/input.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
 #include <xkbcommon/xkbcommon.h>
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
-#include "idev.h"
 #include "list.h"
 #include "util.h"
+#include "idev.h"
 
 typedef struct idev_link                idev_link;
 typedef struct idev_device_vtable       idev_device_vtable;
index ef56ee2482c55be8d9591bb08a04154027630e1c..93f49e945804720735401022ecfc7615ab65bb3f 100644 (file)
 
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
 #include <xkbcommon/xkbcommon.h>
 #include <xkbcommon/xkbcommon-compose.h>
-#include "bus-util.h"
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
+#include "macro.h"
+#include "util.h"
+#include "bus-util.h"
 #include "idev.h"
 #include "idev-internal.h"
-#include "macro.h"
 #include "term-internal.h"
-#include "util.h"
 
 typedef struct kbdtbl kbdtbl;
 typedef struct kbdmap kbdmap;
index 0ba2b28ab764ed810b1ec42ddbac046481cd801e..b1879349773326d7cc0077d58a693087a6495c45 100644 (file)
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
-#include "idev.h"
-#include "idev-internal.h"
 #include "login-shared.h"
 #include "macro.h"
 #include "util.h"
+#include "idev.h"
+#include "idev-internal.h"
 
 static void element_open(idev_element *e);
 static void element_close(idev_element *e);
index 0e846179e6093c061cb9cde2b7ca0704cbdf4901..241677cbbe8d3406ef015396783ae7b58f8d461b 100644 (file)
@@ -28,9 +28,9 @@
 #include <libudev.h>
 #include <linux/input.h>
 #include <stdbool.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
 #include <xkbcommon/xkbcommon.h>
+#include "sd-bus.h"
+#include "sd-event.h"
 
 typedef struct idev_data                idev_data;
 typedef struct idev_data_evdev          idev_data_evdev;
index f1fd4b5f5376b563909a21fb9bf45e01718de343..251c8d730080687c74e1d8243735e33eb6c77a66 100644 (file)
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
+#include "sd-bus.h"
+#include "sd-event.h"
 #include "hashmap.h"
 #include "list.h"
 #include "macro.h"
-#include "sysview.h"
 #include "util.h"
+#include "sysview.h"
 
 /*
  * Devices
index 1e13167a79a61aa03f95a7a273f5e1f6472df0c4..c8bbce43d3d3863034cb64044d8bc69e016add47 100644 (file)
 #include <libudev.h>
 #include <stdbool.h>
 #include <stdlib.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
-#include <systemd/sd-login.h>
-#include "bus-util.h"
+#include "sd-bus.h"
+#include "sd-event.h"
+#include "sd-login.h"
 #include "macro.h"
-#include "sysview.h"
-#include "sysview-internal.h"
 #include "udev-util.h"
 #include "util.h"
+#include "bus-util.h"
+#include "sysview.h"
+#include "sysview-internal.h"
 
 static int context_raise_session_control(sysview_context *c, sysview_session *session, int error);
 
index 71e56e7ebfa4961c91b50b1082adefae325c0cde..a5e7a38df30273e14d9a300de13f0ac7efc872bf 100644 (file)
@@ -37,8 +37,8 @@
 #pragma once
 
 #include <stdbool.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
+#include "sd-bus.h"
+#include "sd-event.h"
 
 typedef struct sysview_event            sysview_event;
 typedef struct sysview_device           sysview_device;