view src/librsvg-test.c @ 4364:39e5f8d6cb85

of-image: update to 2.4.6 * build_packages.m: update io version * src/of-io.mk: update version, checksum, and subdir * src/of-io-1-fixes.patch: removed * dist-files.mk: remove ref to of-image-1-fixes.patch
author John D
date Tue, 14 Mar 2017 12:27:39 -0400
parents 51c82380c366
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <librsvg/rsvg.h>

int main(int argc, char *argv[])
{
    RsvgHandle* handle;

    (void)argc;
    (void)argv;

    g_type_init();
    handle = rsvg_handle_new();
    g_object_unref(handle);

    return 0;
}