Changeset 96205 in vbox for trunk/include
- Timestamp:
- Aug 14, 2022 11:40:55 PM (2 years ago)
- Location:
- trunk/include/iprt/nocrt
- Files:
-
- 1 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/fenv.h
r93115 r96205 31 31 32 32 #include <iprt/cdefs.h> 33 #ifdef RT_ARCH_AMD64 34 # include <iprt/nocrt/amd64/fenv.h> 35 #elif defined(RT_ARCH_X86) 36 # include <iprt/nocrt/x86/fenv.h> 33 #if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64) 34 # include <iprt/nocrt/x86/fenv-x86-amd64.h> 37 35 #else 38 36 # error "IPRT: no fenv.h available for this platform, or the platform define is missing!" -
trunk/include/iprt/nocrt/math.h
r96197 r96205 81 81 #endif 82 82 83 #ifndef IPRT_NOCRT_WITHOUT_ MATH_CONSTANTS83 #ifndef IPRT_NOCRT_WITHOUT_CONFLICTING_CONSTANTS 84 84 85 85 # if defined(__MATH_BUILTIN_CONSTANTS) \ … … 434 434 #endif /* __ISO_C_VISIBLE >= 1999 */ 435 435 436 #ifndef IPRT_NOCRT_WITHOUT_ MATH_CONSTANTS /*def __USE_GNU*/436 #ifndef IPRT_NOCRT_WITHOUT_CONFLICTING_CONSTANTS /*def __USE_GNU*/ 437 437 /* 438 438 * In GLIBC there are long variants of the XOPEN/SVID constant … … 492 492 493 493 /* bird 2022-08-03: moved this block down so we can prototype isnan & isinf without runnning into the macro forms. */ 494 #ifndef IPRT_NOCRT_WITHOUT_ MATH_CONSTANTS /* __ISO_C_VISIBLE >= 1999*/494 #ifndef IPRT_NOCRT_WITHOUT_CONFLICTING_CONSTANTS /* __ISO_C_VISIBLE >= 1999*/ 495 495 # define FP_ILOGB0 (-__INT_MAX) 496 496 # define FP_ILOGBNAN __INT_MAX
Note:
See TracChangeset
for help on using the changeset viewer.