summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-01-20 05:32:24 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-02-28 16:58:21 +0100
commit537d0c797d7e0e4efb8fbffb43240047ebca419c (patch)
tree05cfb9baf44c915b4860973aece2d4bc0464a912
parent02946ec01b0d1736594ae9091119d4fd9f96cf49 (diff)
downloadhardware_replicant_libsamsung-ril-537d0c797d7e0e4efb8fbffb43240047ebca419c.tar.gz
hardware_replicant_libsamsung-ril-537d0c797d7e0e4efb8fbffb43240047ebca419c.tar.bz2
hardware_replicant_libsamsung-ril-537d0c797d7e0e4efb8fbffb43240047ebca419c.zip
ipc.c: sort #includes alphabetically
This makes it easier to spot duplicated headers, find missing headers, or check if a specific header is present. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--ipc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ipc.c b/ipc.c
index 3286370..f2b3ebe 100644
--- a/ipc.c
+++ b/ipc.c
@@ -18,12 +18,14 @@
* along with Samsung-RIL. If not, see <http://www.gnu.org/licenses/>.
*/
+#define LOG_TAG "RIL-IPC"
+
#include <stdlib.h>
+
#include <sys/eventfd.h>
-#define LOG_TAG "RIL-IPC"
-#include <utils/Log.h>
#include <hardware_legacy/power.h>
+#include <utils/Log.h>
#include <samsung-ril.h>
#include <utils.h>