summaryrefslogtreecommitdiff
path: root/tests/projects/pascal/console_with_c/src/foo.c
blob: 66ca7cfb42d3bdd4469a26ee4fabfa95952ca760 (plain)
1
2
3
4
5
6
7
#include <stdint.h>

extern int64_t fib(int64_t n)
{
    return n > 1 ? fib(n - 1) + fib(n - 2) : 1;
}