summaryrefslogtreecommitdiff
path: root/mods/py2many/export.cpp
blob: 288c0377acd529eee704f3111cfb3eae0d5f02e4 (plain)
1
2
3
4
5
extern "C" {
__attribute__((export_name("fib"))) int exp_fib(int n) {
    return fib(n);
}
}