view src/libass-test.c @ 3941:1368ac3ea124

of-tsa: update to v4.2.9 * src/of-tsa.mk: update version, checksum * src/of-tsa-1-cross-fixes.patch: new file * dist-files.mk: add of-tsa-1-cross-fixes.patch * build_packages.m: update tsa version
author John Donoghue <john.donoghue@ieee.org>
date Sun, 17 May 2015 21:02:38 -0400
parents 99516e73b368
children
line wrap: on
line source

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

#include <ass/ass.h>

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

    (void)argc;
    (void)argv;

    handle = ass_library_init();
    ass_library_done(handle);

    return 0;
}