summaryrefslogtreecommitdiffstats
path: root/src/librsvg-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/librsvg-test.c')
-rw-r--r--src/librsvg-test.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/librsvg-test.c b/src/librsvg-test.c
new file mode 100644
index 0000000..32d781c
--- /dev/null
+++ b/src/librsvg-test.c
@@ -0,0 +1,17 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html for further information. */
+
+#include <librsvg/rsvg.h>
+
+int main(int argc, char* argv[])
+{
+ RsvgHandle* handle;
+
+ (void)argc;
+ (void)argv;
+
+ handle = rsvg_handle_new();
+ rsvg_handle_free(handle);
+
+ return 0;
+}