ce34f6f15cdcbf0ece709e01b3e65c3513f05b7a
[libstick.git] / src / main.cc
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 #include <libstick-0.1/test.h>
5
6 int main(int argc, char* argv[]) {
7 (void) argc;
8 (void) argv;
9
10 test();
11 return EXIT_SUCCESS;
12 }
13