diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-11-28 10:54:33 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-11-28 10:54:33 +0000 |
| commit | 650c5878752869fe794b7115126a3781055fcdeb (patch) | |
| tree | cd5e03b072e1d4cf610071915ad23e96927e400f | |
| parent | d29c5760bd6649f52813a5f97f0be08f2c957ce7 (diff) | |
[trunk] Fix compilation issue where size_t would be undefined
| -rw-r--r-- | tests/unit/testempty0.c | 4 |
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; } |
