diff options
Diffstat (limited to 'libglitter_compose_uint64.c')
-rw-r--r-- | libglitter_compose_uint64.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libglitter_compose_uint64.c b/libglitter_compose_uint64.c index 91d6b88..6784055 100644 --- a/libglitter_compose_uint64.c +++ b/libglitter_compose_uint64.c @@ -9,6 +9,7 @@ # define greater_t double # define MIX(A, B) (((A) >> 1) + ((B) >> 1) + ((A) & (B) & 1)) #endif +#ifndef TEST static void @@ -90,3 +91,16 @@ libglitter_compose_uint64(uint64_t **outputs, const uint64_t *restrict input, si render_ctx->cellmap, render_ctx->ncellvalues); } } + + +#else + + +int +main(void) +{ + return 0; /* TODO add test */ +} + + +#endif |