Files

6 lines
93 B
C++
Raw Permalink Normal View History

2024-10-05 23:49:07 +02:00
extern "C" {
__attribute__((export_name("fib"))) int exp_fib(int n) {
return fib(n);
}
}