1 --- atoi.3.orig 2007-04-08 18:49:34.000000000 -0700
2 +++ atoi.3 2007-04-08 19:19:59.000000000 -0700
17 -.Fn atoi "const char *nptr"
18 +.Fn atoi "const char *str"
21 +.Fn atoi_l "const char *str" "locale_t loc"
25 function converts the initial portion of the string pointed to by
33 .Bd -literal -offset indent
34 -(int)strtol(nptr, (char **)NULL, 10);
35 +(int)strtol(str, (char **)NULL, 10);
40 +function uses the current locale, the
42 +function may be passed a locale directly. See
44 +for more information.
45 .Sh IMPLEMENTATION NOTES