summaryrefslogtreecommitdiffstats
path: root/src/libaacs-test.c
blob: 40de196e67505c4cda204be68c4151231857f9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * This file is part of MXE. See LICENSE.md for licensing 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;
}