https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241254

Brooks Davis <bro...@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |Closed
         Resolution|---                         |Not A Bug
                 CC|                            |bro...@freebsd.org

--- Comment #1 from Brooks Davis <bro...@freebsd.org> ---
The implementation of atoi() is literally:

int
atoi(const char *str)
{
        return (int)strtol(str, NULL, 10);
}

so this statement is entirely correct.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"

Reply via email to