view src/librsvg-test.c @ 2784:a35bc5f99e0e gh-pages

Fix historical leftover in tutorial
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 08 Oct 2012 22:34:18 +0200
parents 99516e73b368
children 51c82380c366
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();
    rsvg_handle_free(handle);

    return 0;
}