make code look better
[cdsspec-compiler.git] / test.c
diff --git a/test.c b/test.c
index 5a4776cce8ff204bf5ae50c1d044c2565da74463..d771ce4368c0d8e0334826134f17bd4292323b0d 100644 (file)
--- a/test.c
+++ b/test.c
@@ -1,11 +1,9 @@
 #include <stdio.h>
 
-struct pair {
-       int x, y;
-};
+int test();
 
 int main() {
-#include "test.h"
-       printf("%d\n", globalVar);
-       return 0;
+       int a = test();
+       printf("%d\n", a);
+       return 1;
 }