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_test.c | |
parent | f46b5124627e47a197ad41ff5b9e27b82e19d945 (diff) | |
download | pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.gz pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.bz2 pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.zip |
Clean up includes
Diffstat (limited to 'pugl_test.c')
-rw-r--r-- | pugl_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pugl_test.c b/pugl_test.c index fc3d921..0b5c916 100644 --- a/pugl_test.c +++ b/pugl_test.c @@ -18,14 +18,14 @@ @file pugl_test.c A simple Pugl test that creates a top-level window. */ +#include "pugl/gl.h" +#include "pugl/pugl.h" + #include <locale.h> #include <math.h> #include <stdio.h> #include <string.h> -#include "pugl/gl.h" -#include "pugl/pugl.h" - static int quit = 0; static float xAngle = 0.0f; static float yAngle = 0.0f; |