summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2012-11-28 10:54:33 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2012-11-28 10:54:33 +0000
commit650c5878752869fe794b7115126a3781055fcdeb (patch)
treecd5e03b072e1d4cf610071915ad23e96927e400f
parentd29c5760bd6649f52813a5f97f0be08f2c957ce7 (diff)
[trunk] Fix compilation issue where size_t would be undefined
-rw-r--r--tests/unit/testempty0.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/testempty0.c b/tests/unit/testempty0.c
index 32d6f266..7fbb9d44 100644
--- a/tests/unit/testempty0.c
+++ b/tests/unit/testempty0.c
@@ -1,3 +1,5 @@
-#include <openjpeg.h>
+#include <stdio.h>
+
+#include "openjpeg.h"
int main(int argc, char **argv) { return 0; }