Add "except the handling of errors" into "equivalent to" paragraph.

Pointed by:	bde
Inspired by:	POSIX
This commit is contained in:
Andrey A. Chernov 2001-12-25 08:43:35 +00:00
parent 4cc31e55f5
commit 98b870fa7b
3 changed files with 8 additions and 0 deletions

View file

@ -64,6 +64,8 @@ It is equivalent to:
strtod(nptr, (char **)NULL);
.Ed
.Pp
except the handling of errors.
.Pp
The decimal point
character is defined in the program's locale (category
.Dv LC_NUMERIC ) .

View file

@ -63,6 +63,8 @@ It is equivalent to:
.Bd -literal -offset indent
(int)strtol(nptr, (char **)NULL, 10);
.Ed
.Pp
except the handling of errors.
.Sh IMPLEMENTATION NOTES
The
.Fn atoi

View file

@ -70,6 +70,8 @@ It is equivalent to:
.Pp
.Dl "strtol(nptr, (char **)NULL, 10);"
.Pp
except the handling of errors.
.Pp
The
.Fn atoll
function converts the initial portion of the string pointed to by
@ -82,6 +84,8 @@ representation.
It is equivalent to:
.Pp
.Dl "strtoll(nptr, (char **)NULL, 10);"
.Pp
except the handling of errors.
.Sh ERRORS
The
.Fn atol