aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-08-02 22:43:13 +0200
committerDavid Robillard <d@drobilla.net>2019-08-02 23:34:33 +0200
commit561b71afe382634e71a8102136a33ba9a14eaa72 (patch)
tree4550383e391eb2ee943912deb9cbc5ee64d70920
parent45f8844ca04de650d7f4d2f0b1b517754b529648 (diff)
downloadpugl-561b71afe382634e71a8102136a33ba9a14eaa72.tar.gz
pugl-561b71afe382634e71a8102136a33ba9a14eaa72.tar.bz2
pugl-561b71afe382634e71a8102136a33ba9a14eaa72.zip
Clean up includes
-rw-r--r--pugl/detail/x11.c1
-rw-r--r--pugl/detail/x11_gl.c2
-rw-r--r--test/pugl_test.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c
index d014b2e..d6461a2 100644
--- a/pugl/detail/x11.c
+++ b/pugl/detail/x11.c
@@ -23,6 +23,7 @@
#define _POSIX_C_SOURCE 199309L
#include "pugl/detail/implementation.h"
+#include "pugl/detail/types.h"
#include "pugl/detail/x11.h"
#include "pugl/pugl.h"
diff --git a/pugl/detail/x11_gl.c b/pugl/detail/x11_gl.c
index 6ed8622..85c18b4 100644
--- a/pugl/detail/x11_gl.c
+++ b/pugl/detail/x11_gl.c
@@ -18,7 +18,7 @@
@file x11_gl.c OpenGL graphics backend for X11.
*/
-#include "pugl/detail/implementation.h"
+#include "pugl/detail/types.h"
#include "pugl/detail/x11.h"
#include "pugl/pugl.h"
#include "pugl/pugl_gl_backend.h"
diff --git a/test/pugl_test.c b/test/pugl_test.c
index 2e9a00d..b8a0a42 100644
--- a/test/pugl_test.c
+++ b/test/pugl_test.c
@@ -28,6 +28,7 @@
#include <math.h>
#include <stdbool.h>
+#include <stdint.h>
#include <stdio.h>
#include <string.h>