summaryrefslogtreecommitdiffstats
path: root/src/librsvg-test.c
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-02-16 02:18:23 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-02-16 02:18:23 (GMT)
commit0b1e593a495762c4b5a3bd063097bc981f087a4c (patch)
tree230d620befe11929f10c5d5f606c246a79e9e141 /src/librsvg-test.c
parent7af76e7a89343eb3a523e3862fcecad2a3642cc6 (diff)
downloadmxe-0b1e593a495762c4b5a3bd063097bc981f087a4c.zip
mxe-0b1e593a495762c4b5a3bd063097bc981f087a4c.tar.gz
mxe-0b1e593a495762c4b5a3bd063097bc981f087a4c.tar.bz2
test program for package librsvg
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;
+}