SpaghettiKart/mods/py2many/export.cpp

6 lines
93 B
C++

extern "C" {
__attribute__((export_name("fib"))) int exp_fib(int n) {
return fib(n);
}
}