diff options
Diffstat (limited to '')
-rw-r--r-- | libglitter_update_render_context.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libglitter_update_render_context.c b/libglitter_update_render_context.c index 318ec87..39e5146 100644 --- a/libglitter_update_render_context.c +++ b/libglitter_update_render_context.c @@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" +#ifndef TEST void @@ -26,3 +27,16 @@ libglitter_update_render_context(LIBGLITTER_RENDER_CONTEXT *this, size_t rowsize this->cells[2][1] = this->cells[2][0]; } } + + +#else + + +int +main(void) +{ + return 0; /* TODO add test */ +} + + +#endif |