summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2022-01-02 17:26:01 +0100
committerLouis Burda <quent.burda@gmail.com>2022-08-11 23:55:54 +0200
commit70e3b2bf83b2bda08aea0478d8b64bc1c0cddc95 (patch)
treeecf37bf5083190aea13daae9457d2099e19440f5
parent270e6de80751ae18fdde02c66d101e2bc253db2d (diff)
downloadxsnip-70e3b2bf83b2bda08aea0478d8b64bc1c0cddc95.tar.gz
xsnip-70e3b2bf83b2bda08aea0478d8b64bc1c0cddc95.zip
Reordered includes
-rw-r--r--main.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/main.c b/main.c
index d07bce4..3f130cc 100644
--- a/main.c
+++ b/main.c
@@ -1,16 +1,13 @@
-/* REF: https://github.com/rDr4g0n/gidoodle */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdarg.h>
-#include <string.h>
-
+#include <Imlib2.h>
#include <X11/Xlib.h>
#include <X11/XKBlib.h>
#include <X11/keysym.h>
#include <X11/cursorfont.h>
-#include <Imlib2.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <string.h>
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) >= (b) ? (a) : (b))