Loading...
stdio/FreeBSD/fputws.3 Libc-1725.40.4 Libc-583
--- Libc/Libc-1725.40.4/stdio/FreeBSD/fputws.3
+++ Libc/Libc-583/stdio/FreeBSD/fputws.3
@@ -13,6 +13,10 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
+.\" 3. All advertising materials mentioning features or use of this software
+.\"    must display the following acknowledgement:
+.\"	This product includes software developed by the University of
+.\"	California, Berkeley and its contributors.
 .\" 4. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
@@ -31,14 +35,13 @@
 .\"
 .\"     @(#)fputs.3	8.1 (Berkeley) 6/4/93
 .\" FreeBSD: src/lib/libc/stdio/fputs.3,v 1.8 2001/10/01 16:08:59 ru Exp
-.\" $FreeBSD: src/lib/libc/stdio/fputws.3,v 1.6 2007/01/09 00:28:06 imp Exp $
+.\" $FreeBSD: src/lib/libc/stdio/fputws.3,v 1.5 2003/05/22 13:02:27 ru Exp $
 .\"
 .Dd August 6, 2002
 .Dt FPUTWS 3
 .Os
 .Sh NAME
-.Nm fputws ,
-.Nm fputws_l
+.Nm fputws
 .Nd output a line of wide characters to a stream
 .Sh LIBRARY
 .Lb libc
@@ -46,34 +49,14 @@
 .In stdio.h
 .In wchar.h
 .Ft int
-.Fo fputws
-.Fa "const wchar_t *restrict ws"
-.Fa "FILE *restrict stream"
-.Fc
-.In stdio.h
-.In wchar.h
-.In xlocale.h
-.Ft int
-.Fo fputws_l
-.Fa "const wchar_t *restrict ws"
-.Fa "FILE *restrict stream"
-.Fa "locale_t loc"
-.Fc
+.Fn fputws "const wchar_t * restrict ws" "FILE * restrict fp"
 .Sh DESCRIPTION
 The
 .Fn fputws
 function writes the wide character string pointed to by
 .Fa ws
 to the stream pointed to by
-.Fa stream .
-.Pp
-Although the
-.Fn fputws
-function uses the current locale, the
-.Fn fputws_l
-function may be passed a locale directly. See
-.Xr xlocale 3
-for more information.
+.Fa fp .
 .Sh RETURN VALUES
 The
 .Fn fputws
@@ -86,7 +69,7 @@
 .Bl -tag -width Er
 .It Bq Er EBADF
 The
-.Fa stream
+.Fa fp
 argument supplied
 is not a writable stream.
 .El
@@ -101,8 +84,7 @@
 .Xr ferror 3 ,
 .Xr fputs 3 ,
 .Xr putwc 3 ,
-.Xr stdio 3 ,
-.Xr xlocale 3
+.Xr stdio 3
 .Sh STANDARDS
 The
 .Fn fputws