summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorasmodai <asmodai@FreeBSD.org>2001-09-26 20:22:44 +0000
committerasmodai <asmodai@FreeBSD.org>2001-09-26 20:22:44 +0000
commit1036376e7394d3d64654eaf71806818007d2014f (patch)
tree954598543fb837896ef506ce2aae44333e2efc99 /lib
parentd2bcf9062d3b26fdd3b5a0c0cbf1bda53512704e (diff)
downloadFreeBSD-src-1036376e7394d3d64654eaf71806818007d2014f.zip
FreeBSD-src-1036376e7394d3d64654eaf71806818007d2014f.tar.gz
Add ERRORS section.
Mention thread safety and async-cancel safety status [not]. Add standards compliancy references. Note strtol() is preferred over atoi(). MFC after: 2 weeks
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/atoi.319
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/libc/stdlib/atoi.3 b/lib/libc/stdlib/atoi.3
index f8a2cc1..7061ecd 100644
--- a/lib/libc/stdlib/atoi.3
+++ b/lib/libc/stdlib/atoi.3
@@ -63,6 +63,20 @@ It is equivalent to:
.Bd -literal -offset indent
(int)strtol(nptr, (char **)NULL, 10);
.Ed
+.Sh IMPLEMENTATION NOTES
+The
+.Fn atoi
+function is not thread-safe and also not async-cancel safe.
+.Pp
+The
+.Fn atof
+function has been deprecated by
+.Fn strtol
+and should not be used in new code.
+.Sh ERRORS
+The
+.Fn atoi
+function does not detect errors.
.Sh SEE ALSO
.Xr atof 3 ,
.Xr atol 3 ,
@@ -73,4 +87,7 @@ It is equivalent to:
The
.Fn atoi
function conforms to
-.St -isoC .
+.St -p1003.1-90 ,
+.St -isoC ,
+and
+.St -isoC-99 .
OpenPOWER on IntegriCloud