diff options
author | Tanner Gooding <tagoo@outlook.com> | 2018-08-30 10:09:59 -0700 |
---|---|---|
committer | Tanner Gooding <tagoo@outlook.com> | 2018-09-06 17:07:08 -0700 |
commit | ad3c8cc8934ec89631c221713b86238f6c86e1b6 (patch) | |
tree | e7005b0c8e6ea5ff367a09246a6edf5a40e162e5 /src/pal/inc/pal.h | |
parent | e80e55a1ace4b4de10072b0f6f71f79aca868906 (diff) | |
download | coreclr-ad3c8cc8934ec89631c221713b86238f6c86e1b6.tar.gz coreclr-ad3c8cc8934ec89631c221713b86238f6c86e1b6.tar.bz2 coreclr-ad3c8cc8934ec89631c221713b86238f6c86e1b6.zip |
Updating Number.Formatting to properly print -0
Diffstat (limited to 'src/pal/inc/pal.h')
-rw-r--r-- | src/pal/inc/pal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pal/inc/pal.h b/src/pal/inc/pal.h index e7ec886e87..2d0c47177b 100644 --- a/src/pal/inc/pal.h +++ b/src/pal/inc/pal.h @@ -4459,6 +4459,7 @@ PALIMPORT LONG __cdecl labs(LONG); // clang complains if this is declared with __int64 PALIMPORT long long __cdecl llabs(long long); +PALIMPORT int __cdecl _signbit(double); PALIMPORT int __cdecl _finite(double); PALIMPORT int __cdecl _isnan(double); PALIMPORT double __cdecl _copysign(double, double); @@ -4487,6 +4488,7 @@ PALIMPORT double __cdecl sqrt(double); PALIMPORT double __cdecl tan(double); PALIMPORT double __cdecl tanh(double); +PALIMPORT int __cdecl _signbitf(float); PALIMPORT int __cdecl _finitef(float); PALIMPORT int __cdecl _isnanf(float); PALIMPORT float __cdecl _copysignf(float, float); |