drone-micropython-raw 0.1.1

Bindings to MicroPython.
1
2
3
4
5
6
7
8
#include <math.h>

double __lgamma_r(double, int*);

double lgamma(double x) {
    int sign;
    return __lgamma_r(x, &sign);
}