fixes to make compilation succeeds

This commit is contained in:
Paul Zimmermann 2020-12-18 09:52:40 +01:00 committed by Corinna Vinschen
parent b2f3d593ff
commit 4bb6581aa8
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
*/
#include "fdlibm.h"
#include <errno.h>
#ifndef _DOUBLE_IS_32BITS

View File

@ -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
}