diff options
Diffstat (limited to 'newlib/libm/common/s_modf.c')
-rw-r--r-- | newlib/libm/common/s_modf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/common/s_modf.c b/newlib/libm/common/s_modf.c index 01151397d..2e9bfb125 100644 --- a/newlib/libm/common/s_modf.c +++ b/newlib/libm/common/s_modf.c @@ -41,7 +41,7 @@ DESCRIPTION storing the integer part in <<*<[ipart]>>>. No rounding whatsoever is done; the sum of the integer and fractional parts is guaranteed to be exactly equal to <[val]>. That - is, if . <[realpart]> = modf(<[val]>, &<[intpart]>); then + is, if <[realpart]> = modf(<[val]>, &<[intpart]>); then `<<<[realpart]>+<[intpart]>>>' is the same as <[val]>. <<modff>> is identical, save that it takes and returns <<float>> rather than <<double>> values. |