You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libaacs-test.c

18 lines
267 B

/*
* 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;
}