fixes to make compilation succeeds
This commit is contained in:
parent
b2f3d593ff
commit
4bb6581aa8
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
|
||||
#include "fdlibm.h"
|
||||
#include <errno.h>
|
||||
|
||||
#ifndef _DOUBLE_IS_32BITS
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include "math.h"
|
||||
#include "fdlibm.h"
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef __STDC__
|
||||
float tgammaf(float x)
|
||||
|
@ -34,7 +35,6 @@
|
|||
errno = EDOM;
|
||||
else if (finite(x))
|
||||
errno = ERANGE;
|
||||
}
|
||||
return y;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue