diff options
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r-- | newlib/libc/stdlib/atof.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdlib/div.c | 4 | ||||
-rw-r--r-- | newlib/libc/stdlib/ldiv.c | 4 | ||||
-rw-r--r-- | newlib/libc/stdlib/ldtoa.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/newlib/libc/stdlib/atof.c b/newlib/libc/stdlib/atof.c index bba343cad..8497f6807 100644 --- a/newlib/libc/stdlib/atof.c +++ b/newlib/libc/stdlib/atof.c @@ -25,7 +25,7 @@ DESCRIPTION <<atoff>> converts the initial portion of a string to a <<float>>. The functions parse the character string <[s]>, -locating a substring which can be converted to a floating point +locating a substring which can be converted to a floating-point value. The substring must match the format: . [+|-]<[digits]>[.][<[digits]>][(e|E)[+|-]<[digits]>] The substring converted is the longest initial diff --git a/newlib/libc/stdlib/div.c b/newlib/libc/stdlib/div.c index 2c070dec7..816c3fb3c 100644 --- a/newlib/libc/stdlib/div.c +++ b/newlib/libc/stdlib/div.c @@ -19,9 +19,9 @@ Divide @tex $n/d$, @end tex -@ifinfo +@ifnottex <[n]>/<[d]>, -@end ifinfo +@end ifnottex returning quotient and remainder as two integers in a structure <<div_t>>. RETURNS diff --git a/newlib/libc/stdlib/ldiv.c b/newlib/libc/stdlib/ldiv.c index 054b33837..d7508f1c5 100644 --- a/newlib/libc/stdlib/ldiv.c +++ b/newlib/libc/stdlib/ldiv.c @@ -19,9 +19,9 @@ Divide @tex $n/d$, @end tex -@ifinfo +@ifnottex <[n]>/<[d]>, -@end ifinfo +@end ifnottex returning quotient and remainder as two long integers in a structure <<ldiv_t>>. RETURNS diff --git a/newlib/libc/stdlib/ldtoa.c b/newlib/libc/stdlib/ldtoa.c index 80e8750a4..7af35d5e8 100644 --- a/newlib/libc/stdlib/ldtoa.c +++ b/newlib/libc/stdlib/ldtoa.c @@ -44,7 +44,7 @@ void _IO_ldtostr(long double *, char *, int, int, char); /* Maximum exponent digits - base 10 */ #define MAX_EXP_DIGITS 5 -/* Control structure for long doublue conversion including rounding precision values. +/* Control structure for long double conversion including rounding precision values. * rndprc can be set to 80 (if NE=6), 64, 56, 53, or 24 bits. */ typedef struct |