aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/fib.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/fib.c')
-rw-r--r--test/c/fib.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/c/fib.c b/test/c/fib.c
index 19548415..77aa7bb9 100644
--- a/test/c/fib.c
+++ b/test/c/fib.c
@@ -12,11 +12,7 @@ int fib(int n)
int main(int argc, char ** argv)
{
int n, r;
-#ifdef __K1C_COS__
if (argc >= 2) n = atoi(argv[1]); else n = 26;
-#else
- if (argc >= 2) n = atoi(argv[1]); else n = 35;
-#endif
r = fib(n);
printf("fib(%d) = %d\n", n, r);
return 0;