aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_osx.m
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_osx.m
parentf46b5124627e47a197ad41ff5b9e27b82e19d945 (diff)
downloadpugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.gz
pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.tar.bz2
pugl-539c1ddd4029f4ea62368c45955d0c1f6bca4006.zip
Clean up includes
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r--pugl/pugl_osx.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m
index 71d98a1..712f5fc 100644
--- a/pugl/pugl_osx.m
+++ b/pugl/pugl_osx.m
@@ -19,14 +19,14 @@
@file pugl_osx.m OSX/Cocoa Pugl Implementation.
*/
-#include <stdlib.h>
-
-#import <Cocoa/Cocoa.h>
-
#include "pugl/cairo_gl.h"
#include "pugl/gl.h"
#include "pugl/pugl_internal.h"
+#import <Cocoa/Cocoa.h>
+
+#include <stdlib.h>
+
@class PuglOpenGLView;
struct PuglInternalsImpl {