1 --- atof.3.orig 2007-04-08 18:49:34.000000000 -0700
2 +++ atof.3 2007-04-08 19:18:24.000000000 -0700
17 -.Fn atof "const char *nptr"
18 +.Fn atof "const char *str"
21 +.Fn atof_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 -strtod(nptr, (char **)NULL);
35 +strtod(str, (char **)NULL);
39 character is defined in the program's locale (category
44 +function uses the current locale, the
46 +function may be passed a locale directly. See
48 +for more information.
49 .Sh IMPLEMENTATION NOTES