minor fix
[cdsspec-compiler.git] / test.c
diff --git a/test.c b/test.c
index 2dec27eceb3b6ac000f73b34cd581585e452b24f..d771ce4368c0d8e0334826134f17bd4292323b0d 100644 (file)
--- a/test.c
+++ b/test.c
@@ -1,14 +1,9 @@
 #include <stdio.h>
-#include "test.h"
 
-void _foo(struct Test t) {
-       printf("%d\n", t.x);
-}
-
-void foo(struct Test t) {
-       _foo(t);
-}
+int test();
 
 int main() {
-       return 0;
+       int a = test();
+       printf("%d\n", a);
+       return 1;
 }