svn commit: r249936 - stable/9/lib/libc/locale
Jilles Tjoelker
jilles at FreeBSD.org
Fri Apr 26 16:09:11 UTC 2013
Author: jilles
Date: Fri Apr 26 16:09:10 2013
New Revision: 249936
URL: http://svnweb.freebsd.org/changeset/base/249936
Log:
MFC r248803: btowc(3), isblank(3): Correct prototypes for _l variants.
Modified:
stable/9/lib/libc/locale/btowc.3
stable/9/lib/libc/locale/isblank.3
Directory Properties:
stable/9/lib/libc/ (props changed)
Modified: stable/9/lib/libc/locale/btowc.3
==============================================================================
--- stable/9/lib/libc/locale/btowc.3 Fri Apr 26 16:05:43 2013 (r249935)
+++ stable/9/lib/libc/locale/btowc.3 Fri Apr 26 16:09:10 2013 (r249936)
@@ -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: stable/9/lib/libc/locale/isblank.3
==============================================================================
--- stable/9/lib/libc/locale/isblank.3 Fri Apr 26 16:05:43 2013 (r249935)
+++ stable/9/lib/libc/locale/isblank.3 Fri Apr 26 16:09:10 2013 (r249936)
@@ -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
More information about the svn-src-stable-9
mailing list