add spsc
[cdsspec-compiler.git] / test.c
1 #include <stdio.h>
2
3 int test();
4
5 int main() {
6         int a = test();
7         printf("%d\n", a);
8         return 1;
9 }