summaryrefslogtreecommitdiff
path: root/resolv/res_hconf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-08-17 07:51:36 +0000
committerUlrich Drepper <drepper@redhat.com>2001-08-17 07:51:36 +0000
commit6293b80374f7c7b017515b9a8716a9ea16eb063a (patch)
treee2c8c00c351a5da2e44e534f298c65901e085303 /resolv/res_hconf.c
parent51028f34ceeb7c4c91abc2ac2b818afeaa671b91 (diff)
Update.
2001-08-17 Ulrich Drepper <drepper@redhat.com> * 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.
Diffstat (limited to 'resolv/res_hconf.c')
-rw-r--r--resolv/res_hconf.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c
index eb8cffad7a..b8137990ff 100644
--- a/resolv/res_hconf.c
+++ b/resolv/res_hconf.c
@@ -149,7 +149,7 @@ arg_service_list (const char *fname, int line_num, const char *args,
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -167,7 +167,7 @@ arg_service_list (const char *fname, int line_num, const char *args,
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -194,7 +194,7 @@ arg_service_list (const char *fname, int line_num, const char *args,
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -234,7 +234,7 @@ arg_trimdomain_list (const char *fname, int line_num, const char *args,
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -259,7 +259,7 @@ arg_trimdomain_list (const char *fname, int line_num, const char *args,
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -321,7 +321,7 @@ arg_bool (const char *fname, int line_num, const char *args, unsigned flag)
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -368,7 +368,7 @@ parse_line (const char *fname, int line_num, const char *str)
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)
- fwprintf (stderr, L"%s", buf);
+ __fwprintf (stderr, L"%s", buf);
else
#endif
fputs (buf, stderr);
@@ -393,7 +393,7 @@ parse_line (const char *fname, int line_num, const char *str)
__asprintf (&buf,
_("%s: line %d: ignoring trailing garbage `%s'\n"),
- fname, line_num, str);
+ fname, line_num, str);
#ifdef USE_IN_LIBIO
if (_IO_fwide (stderr, 0) > 0)