new testcases
[libfirm] / ir / be / test / tailrec.c
index 7e77df0..9e21795 100644 (file)
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
 static unsigned _fak(unsigned a, unsigned b)
 {
   if (a == 0)
@@ -17,4 +19,6 @@ int main(int argc, char *argv[])
   int x = 4;
 
   printf("%d! = %d\n", x, fak(x));
+
+  return 0;
 }