svn commit: r248803 - head/lib/libc/locale

Jilles Tjoelker jilles at FreeBSD.org
Wed Mar 27 21:31:41 UTC 2013


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


More information about the svn-src-all mailing list