aboutsummaryrefslogtreecommitdiffstats
path: root/test/cminor/mainfib.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/cminor/mainfib.c')
-rw-r--r--test/cminor/mainfib.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/cminor/mainfib.c b/test/cminor/mainfib.c
deleted file mode 100644
index a736d70b..00000000
--- a/test/cminor/mainfib.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-
-extern int fib(int);
-
-int main(int argc, char ** argv)
-{
- int n, r;
- if (argc >= 2) n = atoi(argv[1]); else n = 30;
- r = fib(n);
- printf("fib(%d) = %d\n", n, r);
- return 0;
-}