diff options
author | David Robillard <d@drobilla.net> | 2023-09-10 13:39:56 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:07 -0500 |
commit | d80b2a1c153f81685d026f8e09c12175abed3d03 (patch) | |
tree | 8207788e58ee9de94ca224433a02a88e8fed3801 /test | |
parent | 76fabe903adb09e6fe4d084ff6be49115285e086 (diff) | |
download | serd-d80b2a1c153f81685d026f8e09c12175abed3d03.tar.gz serd-d80b2a1c153f81685d026f8e09c12175abed3d03.tar.bz2 serd-d80b2a1c153f81685d026f8e09c12175abed3d03.zip |
Separate Turtle and TriG reading code
Diffstat (limited to 'test')
-rw-r--r-- | test/test_syntax.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_syntax.c b/test/test_syntax.c index 19f4a463..c2de8526 100644 --- a/test/test_syntax.c +++ b/test/test_syntax.c @@ -4,6 +4,7 @@ #undef NDEBUG #include "serd/syntax.h" +#include "zix/attributes.h" #include <assert.h> @@ -49,7 +50,7 @@ test_syntax_has_graphs(void) assert(serd_syntax_has_graphs(SERD_TRIG)); } -int +ZIX_PURE_FUNC int main(void) { test_syntax_by_name(); |