Author: jilles Date: Wed Mar 27 21:31:40 2013 New Revision: 248803 URL: http://svnweb.freebsd.org/changeset/base/248803
Log: btowc(3), isblank(3): Correct prototypes for _l variants. MFC after: 1 week Modified: head/lib/libc/locale/btowc.3 head/lib/libc/locale/isblank.3 Modified: head/lib/libc/locale/btowc.3 ============================================================================== --- head/lib/libc/locale/btowc.3 Wed Mar 27 19:21:36 2013 (r248802) +++ head/lib/libc/locale/btowc.3 Wed Mar 27 21:31:40 2013 (r248803) @@ -42,9 +42,9 @@ .In wchar.h .In xlocale.h .Ft wint_t -.Fn btowc "int c" +.Fn btowc_l "int c" "locale_t loc" .Ft int -.Fn wctob "wint_t c" +.Fn wctob_l "wint_t c" "locale_t loc" .Sh DESCRIPTION The .Fn btowc Modified: head/lib/libc/locale/isblank.3 ============================================================================== --- head/lib/libc/locale/isblank.3 Wed Mar 27 19:21:36 2013 (r248802) +++ head/lib/libc/locale/isblank.3 Wed Mar 27 21:31:40 2013 (r248803) @@ -41,7 +41,7 @@ .Ft int .Fn isblank "int c" .Ft int -.Fn isblank "int c" "locale_t loc" +.Fn isblank_l "int c" "locale_t loc" .Sh DESCRIPTION The .Fn isblank _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"