diff options
Diffstat (limited to 'tinyc/win32/examples/fib.c')
-rw-r--r-- | tinyc/win32/examples/fib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyc/win32/examples/fib.c b/tinyc/win32/examples/fib.c index 6a4bdf5c4..8da26bce6 100644 --- a/tinyc/win32/examples/fib.c +++ b/tinyc/win32/examples/fib.c @@ -1,7 +1,7 @@ #include <stdio.h> -#include <math.h> +#include <stdlib.h> // atoi() -int fib(int n) +int fib(n) { if (n <= 2) return 1; |