diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-20 07:17:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-20 07:17:10 +0000 |
commit | 0028f16e8a9508ca17c9b109b9a972cd469143a8 (patch) | |
tree | d6c7f3130d08f3d25cee4f02686a23778a464f1b /argp/argp-help.c | |
parent | faf4c7f081c709a26558883c54af214fd495a7a8 (diff) | |
download | glibc-0028f16e8a9508ca17c9b109b9a972cd469143a8.tar.gz glibc-0028f16e8a9508ca17c9b109b9a972cd469143a8.tar.xz glibc-0028f16e8a9508ca17c9b109b9a972cd469143a8.zip |
Update.
2001-08-20 Ulrich Drepper <drepper@redhat.com> * include/dirent.h: Include <dirstream.h> first.
Diffstat (limited to 'argp/argp-help.c')
-rw-r--r-- | argp/argp-help.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/argp/argp-help.c b/argp/argp-help.c index de709dff8f..fccc8335b8 100644 --- a/argp/argp-help.c +++ b/argp/argp-help.c @@ -1712,11 +1712,11 @@ __argp_error (const struct argp_state *state, const char *fmt, ...) { char *buf; - asprintf (&buf, fmt, ap); + __asprintf (&buf, fmt, ap); - fwprintf (stream, L"%s: %s\n", - state ? state->name : program_invocation_short_name, - buf); + __fwprintf (stream, L"%s: %s\n", + state ? state->name : program_invocation_short_name, + buf); free (buf); } @@ -1787,9 +1787,9 @@ __argp_failure (const struct argp_state *state, int status, int errnum, { char *buf; - asprintf (&buf, fmt, ap); + __asprintf (&buf, fmt, ap); - fwprintf (stream, L": %s", buf); + __fwprintf (stream, L": %s", buf); free (buf); } @@ -1811,8 +1811,8 @@ __argp_failure (const struct argp_state *state, int status, int errnum, #ifdef USE_IN_LIBIO if (_IO_fwide (stream, 0) > 0) - fwprintf (stream, ": %s", - __strerror_r (errnum, buf, sizeof (buf))); + __fwprintf (stream, ": %s", + __strerror_r (errnum, buf, sizeof (buf))); else #endif { |