summaryrefslogtreecommitdiffstats
path: root/src/libaacs-test.c
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-10-08 03:28:17 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-10-08 03:29:22 (GMT)
commitc940dfa0425a03e962432d9d50c9beea304c7e9e (patch)
treebbc988d697659058861c6f92bda91c54aafd7107 /src/libaacs-test.c
parente41fa5a8ddda9e903708058da837baa15921cbd7 (diff)
downloadmxe-c940dfa0425a03e962432d9d50c9beea304c7e9e.zip
mxe-c940dfa0425a03e962432d9d50c9beea304c7e9e.tar.gz
mxe-c940dfa0425a03e962432d9d50c9beea304c7e9e.tar.bz2
Add package libaacs
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'src/libaacs-test.c')
-rw-r--r--src/libaacs-test.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libaacs-test.c b/src/libaacs-test.c
new file mode 100644
index 0000000..35701e4
--- /dev/null
+++ b/src/libaacs-test.c
@@ -0,0 +1,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;
+}