mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 09:37:13 +02:00
commit
4fcad1584a
3 changed files with 5 additions and 16 deletions
|
@ -26,10 +26,10 @@
|
||||||
* $FreeBSD: src/lib/msun/i387/fenv.c,v 1.8 2011/10/21 06:25:31 das Exp $
|
* $FreeBSD: src/lib/msun/i387/fenv.c,v 1.8 2011/10/21 06:25:31 das Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cdefs-compat.h>
|
#include "cdefs-compat.h"
|
||||||
#include <types-compat.h>
|
#include "types-compat.h"
|
||||||
#include <math_private.h>
|
#include "math_private.h"
|
||||||
#include <i387/bsd_npx.h>
|
#include "i387/bsd_npx.h"
|
||||||
|
|
||||||
#define __fenv_static
|
#define __fenv_static
|
||||||
#include <openlibm_fenv.h>
|
#include <openlibm_fenv.h>
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
* for a given compiler, let the compile fail if it is told to use
|
* for a given compiler, let the compile fail if it is told to use
|
||||||
* a feature that we cannot live without.
|
* a feature that we cannot live without.
|
||||||
*/
|
*/
|
||||||
#if __GNUC_PREREQ__(2, 7) || defined(__INTEL_COMPILER)
|
#if !defined(__pure2) && (__GNUC_PREREQ__(2, 7) || defined(__INTEL_COMPILER))
|
||||||
#define __pure2 __attribute__((__const__))
|
#define __pure2 __attribute__((__const__))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,6 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
#ifdef __GLIBC__
|
|
||||||
/* Not sure what to do about __pure2 on linux */
|
|
||||||
#define __pure2
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
/* Not sure what to do about __pure2 on windows */
|
|
||||||
#define __pure2
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef uint8_t u_int8_t;
|
typedef uint8_t u_int8_t;
|
||||||
typedef uint16_t u_int16_t;
|
typedef uint16_t u_int16_t;
|
||||||
|
|
Loading…
Add table
Reference in a new issue