crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[musl] / src / math / lgammaf.c
1 #include <math.h>
2
3 extern int __signgam;
4 float __lgammaf_r(float, int *);
5
6 float lgammaf(float x)
7 {
8         return __lgammaf_r(x, &__signgam);
9 }