diff options
Diffstat (limited to '')
-rw-r--r-- | libfonts_decode_font_description.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libfonts_decode_font_description.c b/libfonts_decode_font_description.c index 46031de..2348d97 100644 --- a/libfonts_decode_font_description.c +++ b/libfonts_decode_font_description.c @@ -1,5 +1,7 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" +#ifndef TEST + #define LIST_FIELDS_EXCEPT_FINAL(X)\ X(foundry)\ @@ -215,3 +217,16 @@ private: desc->private_font_name = desc->_buf; return 0; } + + +#else + + +int +main(void) /* TODO add test */ +{ + return 0; +} + + +#endif |