summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-12-25 08:43:35 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-12-25 08:43:35 +0000
commit98b870fa7b5b5c3402bdd05ed56b2daf08996cd2 (patch)
tree26fafec366db466f837b220ef309be5f91c83e05 /lib/libc/stdlib
parent4cc31e55f5dd28425f53d07fb688ab9ce3e2c13f (diff)
Notes
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/atof.32
-rw-r--r--lib/libc/stdlib/atoi.32
-rw-r--r--lib/libc/stdlib/atol.34
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/stdlib/atof.3 b/lib/libc/stdlib/atof.3
index da8bed5391d3..ad865f4e7e40 100644
--- a/lib/libc/stdlib/atof.3
+++ b/lib/libc/stdlib/atof.3
@@ -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 ) .
diff --git a/lib/libc/stdlib/atoi.3 b/lib/libc/stdlib/atoi.3
index 69eda819c783..551fc560888f 100644
--- a/lib/libc/stdlib/atoi.3
+++ b/lib/libc/stdlib/atoi.3
@@ -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
diff --git a/lib/libc/stdlib/atol.3 b/lib/libc/stdlib/atol.3
index 9ba67cdaf9f4..261999fdb9ed 100644
--- a/lib/libc/stdlib/atol.3
+++ b/lib/libc/stdlib/atol.3
@@ -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