diff options
author | Szabolcs Nagy <nsz@port70.net> | 2018-11-30 21:15:23 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-04-17 13:08:45 -0400 |
commit | 4f8acf953ccf1a978a3378db7fb1e8d5a7afbca1 (patch) | |
tree | c007aa592fe012925b1679dc9dfef34f7b9671c5 /src/internal | |
parent | 9ef6ca4235b7a66aefa432295c02b4df64a53f2e (diff) | |
download | musl-4f8acf953ccf1a978a3378db7fb1e8d5a7afbca1.tar.gz musl-4f8acf953ccf1a978a3378db7fb1e8d5a7afbca1.tar.xz musl-4f8acf953ccf1a978a3378db7fb1e8d5a7afbca1.zip |
math: add double precision error handling functions
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/libm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/internal/libm.h b/src/internal/libm.h index a52a0b83..62da4bdb 100644 --- a/src/internal/libm.h +++ b/src/internal/libm.h @@ -222,5 +222,10 @@ hidden float __math_uflowf(uint32_t); hidden float __math_oflowf(uint32_t); hidden float __math_divzerof(uint32_t); hidden float __math_invalidf(float); +hidden double __math_xflow(uint32_t, double); +hidden double __math_uflow(uint32_t); +hidden double __math_oflow(uint32_t); +hidden double __math_divzero(uint32_t); +hidden double __math_invalid(double); #endif |