minor fix
[cdsspec-compiler.git] / test.c
diff --git a/test.c b/test.c
index 65c412a0f7c9ef4279121b33f44d960ee424ef56..d771ce4368c0d8e0334826134f17bd4292323b0d 100644 (file)
--- a/test.c
+++ b/test.c
@@ -1,10 +1,9 @@
-# include <stdio.h>
-#include <stdlib.h>
-#include <stdint.h>
+#include <stdio.h>
+
+int test();
 
 int main() {
-       uint64_t i64 = (uint64_t) NULL;
-       if (i64)
-               printf("True\n");
+       int a = test();
+       printf("%d\n", a);
        return 1;
 }