summaryrefslogtreecommitdiffstats
path: root/src/libaacs-test.c
blob: 35701e4d0910b06ff83964b6e65147a034d3e946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <libaacs/aacs.h>

int main (int argc, char **argv)
{
    int major, minor, micro;

    (void)argc;
    (void)argv;

    aacs_get_version(&major, &minor, &micro);

    return 0;
}