You've already forked SpaghettiKart
mirror of
https://github.com/izzy2lost/SpaghettiKart.git
synced 2026-03-26 16:57:37 -07:00
6 lines
93 B
C++
6 lines
93 B
C++
|
|
extern "C" {
|
||
|
|
__attribute__((export_name("fib"))) int exp_fib(int n) {
|
||
|
|
return fib(n);
|
||
|
|
}
|
||
|
|
}
|