view src/libass-test.c @ 5600:1a766822f3ac

LLVM: Update to version 9.0.1. * src/llvm.mk: Update version and checksum. Update dependency to Python 3. Make sure to use python built by MXE Octave. * src/llvm-2-demangle.patch: Remove patch. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 13 Dec 2020 11:28:44 +0100
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;
}