mxe/src/librsvg-test.c

19 lines
319 B
C
Raw Normal View History

2012-03-28 14:46:58 +01:00
/* This file is part of MXE. */
2010-02-16 02:18:23 +00:00
/* See doc/index.html for further information. */
#include <librsvg/rsvg.h>
2010-05-09 22:21:01 +01:00
int main(int argc, char *argv[])
2010-02-16 02:18:23 +00:00
{
RsvgHandle* handle;
(void)argc;
(void)argv;
g_type_init();
2010-02-16 02:18:23 +00:00
handle = rsvg_handle_new();
rsvg_handle_free(handle);
return 0;
}