1 --- atof.3.orig 2010-02-08 16:26:10.000000000 -0800
2 +++ atof.3 2010-02-13 20:58:26.000000000 -0800
13 @@ -45,33 +46,50 @@ string to double
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
52 -function is not thread-safe and also not async-cancel-safe.
55 +functions are thread-safe and async-cancel-safe.
59 -function has been deprecated by
62 +functions have been deprecated by
66 and should not be used in new code.
69 @@ -84,7 +102,8 @@ on an error.