libc: stub tgamma for kuroko

This commit is contained in:
K. Lange 2022-09-04 19:23:12 +09:00
parent b9166a3fc1
commit bb1c30d1ef
3 changed files with 3 additions and 1 deletions

View File

@ -53,6 +53,7 @@ extern double atanh(double x);
extern double erf(double x);
extern double erfc(double x);
extern double gamma(double x);
extern double tgamma(double x);
extern double lgamma(double x);
extern double copysign(double x, double y);
extern double remainder(double x, double y);

2
kuroko

@ -1 +1 @@
Subproject commit d63ab7046644df15664de777d3302d633bbe6b10
Subproject commit a59b635bbc48f7e0f1d994151775b84ce1db5d51

View File

@ -61,6 +61,7 @@ double atanh(double x) { BAD; return 0.0; }
double erf(double x) { BAD; return 0.0; }
double erfc(double x) { BAD; return 0.0; }
double gamma(double x) { BAD; return 0.0; }
double tgamma(double x){ BAD; return 0.0; }
double lgamma(double x){ BAD; return 0.0; }
double remainder(double x, double y) { BAD; return 0.0; }