aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_x11.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-02-15 22:37:50 +0100
committerDavid Robillard <d@drobilla.net>2019-02-16 16:56:50 +0100
commit539c1ddd4029f4ea62368c45955d0c1f6bca4006 (patch)
tree8458cfa1ed8cd8da139919407208c2fd05632065 /pugl/pugl_x11.c
parentf46b5124627e47a197ad41ff5b9e27b82e19d945 (diff)
downloadpugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.gz
pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.bz2
pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.zip
Clean up includes
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r--pugl/pugl_x11.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c
index 7a334e3..3a8cead 100644
--- a/pugl/pugl_x11.c
+++ b/pugl/pugl_x11.c
@@ -20,26 +20,25 @@
@file pugl_x11.c X11 Pugl Implementation.
*/
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <X11/Xatom.h>
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-#include <X11/keysym.h>
#include "pugl/pugl_internal.h"
#include "pugl/pugl_x11.h"
-
#ifdef PUGL_HAVE_GL
#include "pugl/pugl_x11_gl.h"
#endif
-
#ifdef PUGL_HAVE_CAIRO
#include "pugl/pugl_x11_cairo.h"
#endif
+#include <X11/Xatom.h>
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+#include <X11/keysym.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
#ifndef MIN
# define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif