diff options
author | David Robillard <d@drobilla.net> | 2019-02-15 22:37:50 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-02-16 16:56:50 +0100 |
commit | 539c1ddd4029f4ea62368c45955d0c1f6bca4006 (patch) | |
tree | 8458cfa1ed8cd8da139919407208c2fd05632065 /pugl_cairo_test.c | |
parent | f46b5124627e47a197ad41ff5b9e27b82e19d945 (diff) | |
download | pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.gz pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.bz2 pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.zip |
Clean up includes
Diffstat (limited to 'pugl_cairo_test.c')
-rw-r--r-- | pugl_cairo_test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pugl_cairo_test.c b/pugl_cairo_test.c index 78abcfa..9480560 100644 --- a/pugl_cairo_test.c +++ b/pugl_cairo_test.c @@ -18,13 +18,13 @@ @file pugl_cairo_test.c A simple Pugl test that creates a top-level window. */ -#include <stdint.h> -#include <stdio.h> -#include <string.h> +#include "pugl/pugl.h" #include <cairo/cairo.h> -#include "pugl/pugl.h" +#include <stdint.h> +#include <stdio.h> +#include <string.h> static int quit = 0; static bool entered = false; |