Loop your X cursor around the screen 👉😎👉
git clone https://github.com/m-col/xoop
Files | Refs | Readme | License

Commit 519915731c42e103f10eb15c0de61f4ec13422a1
Parent: f7e761f62c87b665c9050129cca95a1de3c959b7
Author: mcol <mcol@posteo.net>
Date: 2020-04-20 12:28:17 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2020-04-20 12:28:17 +0100

explicitly include stdio

xoop.c Modified

@@ -21,15 +21,12 @@
 */
 
 
+#include <stdio.h>
 #include <stdlib.h>
-#include <xcb/xcb.h>
 #include <xcb/shape.h>
+#include <xcb/xcb.h>
 #include <unistd.h>
 
-#ifdef DEBUG
-#include <stdio.h>
-#endif
-
 #define PROGNAME "xoop"
 
 xcb_connection_t    *conn;