From 6293b80374f7c7b017515b9a8716a9ea16eb063a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 17 Aug 2001 07:51:36 +0000 Subject: Update. 2001-08-17 Ulrich Drepper * sunrpc/svc_simple.c (universal): Use __write instead of write. * wcsmbs/wcscoll.c: Also define __wcscoll. * include/wchar.h: Declare __wcscoll. * libio/fwprintf.c: Use __vfwprintf instead of vfwprintf. * libio/vwprintf.c: Likewise. * libio/wprintf.c: Likewise. * iconv/gconv_cache.c: Use __munmap instead of munmap. * posix/regex.c [_LIBC] (convert_mbs_to_wcs): Use __mbrtowc instead of mbrtowc. [_LIBC]: Use __iswctype instead of iswctype, __wcslen instead of wcslen, and __wcscoll instead of wcscoll. * sysdeps/unix/sockatmark.c (sockatmark): Use __ioctl instead of ioctl. * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue): Use __getuid instead of getuid. * stdio-common/perror.c (perror): Use __close instead of close. * iconv/gconv_cache.c (__gconv_load_cache): Likewise. * libio/freopen.c (freopen): Likewise. * libio/freopen64.c (freopen64): Likewise. --- argp/argp-fmtstream.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'argp/argp-fmtstream.c') diff --git a/argp/argp-fmtstream.c b/argp/argp-fmtstream.c index fca89a3..0223806 100644 --- a/argp/argp-fmtstream.c +++ b/argp/argp-fmtstream.c @@ -100,7 +100,7 @@ __argp_fmtstream_free (argp_fmtstream_t fs) { #ifdef USE_IN_LIBIO if (_IO_fwide (fs->stream, 0) > 0) - fwprintf (fs->stream, L"%.*s", (int) (fs->p - fs->buf), fs->buf); + __fwprintf (fs->stream, L"%.*s", (int) (fs->p - fs->buf), fs->buf); else #endif fwrite_unlocked (fs->buf, 1, fs->p - fs->buf, fs->stream); @@ -286,8 +286,8 @@ __argp_fmtstream_update (argp_fmtstream_t fs) { #ifdef USE_IN_LIBIO if (_IO_fwide (fs->stream, 0) > 0) - fwprintf (fs->stream, L"%.*s\n", - (int) (nl - fs->buf), fs->buf); + __fwprintf (fs->stream, L"%.*s\n", + (int) (nl - fs->buf), fs->buf); else #endif { -- cgit v1.1