diff options
Diffstat (limited to 'tests/projects/pascal/console_with_c/src/foo.c')
| -rw-r--r-- | tests/projects/pascal/console_with_c/src/foo.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/projects/pascal/console_with_c/src/foo.c b/tests/projects/pascal/console_with_c/src/foo.c index 66ca7cfb4..0d56f5f09 100644 --- a/tests/projects/pascal/console_with_c/src/foo.c +++ b/tests/projects/pascal/console_with_c/src/foo.c @@ -1,7 +1,5 @@ #include <stdint.h> -extern int64_t fib(int64_t n) -{ +extern int64_t fib(int64_t n) { return n > 1 ? fib(n - 1) + fib(n - 2) : 1; } - |
