mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 09:37:13 +02:00
Some fixes to be able to build the system versions of the tests.
This commit is contained in:
parent
f418d26601
commit
c485db579d
1 changed files with 15 additions and 0 deletions
|
@ -117,9 +117,14 @@
|
||||||
|
|
||||||
#include "libm-test-ulps.h"
|
#include "libm-test-ulps.h"
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
#ifdef SYS_MATH_H
|
||||||
|
#include <math.h>
|
||||||
|
#include <fenv.h>
|
||||||
|
#else
|
||||||
#include <openlibm.h>
|
#include <openlibm.h>
|
||||||
#include <openlibm_complex.h>
|
#include <openlibm_complex.h>
|
||||||
#include <openlibm_fenv.h>
|
#include <openlibm_fenv.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#if 0 /* XXX scp XXX */
|
#if 0 /* XXX scp XXX */
|
||||||
#define FE_INEXACT FE_INEXACT
|
#define FE_INEXACT FE_INEXACT
|
||||||
|
@ -142,6 +147,16 @@
|
||||||
// Some native libm implementations don't have sincos defined, so we have to do it ourselves
|
// Some native libm implementations don't have sincos defined, so we have to do it ourselves
|
||||||
void FUNC(sincos) (FLOAT x, FLOAT * s, FLOAT * c);
|
void FUNC(sincos) (FLOAT x, FLOAT * s, FLOAT * c);
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#ifdef SYS_MATH_H
|
||||||
|
void sincos(FLOAT x, FLOAT * s, FLOAT * c)
|
||||||
|
{
|
||||||
|
*s = sin(x);
|
||||||
|
*c = cos(x);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Possible exceptions */
|
/* Possible exceptions */
|
||||||
#define NO_EXCEPTION 0x0
|
#define NO_EXCEPTION 0x0
|
||||||
#define INVALID_EXCEPTION 0x1
|
#define INVALID_EXCEPTION 0x1
|
||||||
|
|
Loading…
Add table
Reference in a new issue