view src/libass-test.c @ 3558:c102f813be47

update stable-octave to 3.8.1
author John W. Eaton <jwe@octave.org>
date Thu, 06 Mar 2014 15:39:37 -0500
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;
}