summaryrefslogtreecommitdiff
path: root/argp/argp-help.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-08-09 01:27:20 +0000
committerUlrich Drepper <drepper@redhat.com>2005-08-09 01:27:20 +0000
commita7c684a235e60a2d30e75f59e2b11d4c50088090 (patch)
tree34a4cf4fb1df05fc677580e614ead4715e545b85 /argp/argp-help.c
parentc9cc8e10836ea99641f4010efe42dc41312fa9ac (diff)
* argp/argp-help.c: Use _IO_vasprintf instead of vasprintf.
* include/stdio.h: Add libc_hidden_proto for __vfprintf_chk. * debug/vfprintf_chk.c: Add libc_hidden_def.
Diffstat (limited to 'argp/argp-help.c')
-rw-r--r--argp/argp-help.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/argp/argp-help.c b/argp/argp-help.c
index abd59c12f9..4bc4d07b15 100644
--- a/argp/argp-help.c
+++ b/argp/argp-help.c
@@ -48,7 +48,8 @@ char *alloca ();
#include <stdarg.h>
#include <ctype.h>
#include <limits.h>
-#ifdef USE_IN_LIBIO
+#ifdef _LIBC
+# include <../libio/libioP.h>
# include <wchar.h>
#endif
@@ -1766,7 +1767,7 @@ __argp_error (const struct argp_state *state, const char *fmt, ...)
#ifdef _LIBC
char *buf;
- if (vasprintf (&buf, fmt, ap) < 0)
+ if (_IO_vasprintf (&buf, fmt, ap) < 0)
buf = NULL;
__fxprintf (stream, "%s: %s\n",
@@ -1836,7 +1837,7 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
#ifdef _LIBC
char *buf;
- if (vasprintf (&buf, fmt, ap) < 0)
+ if (_IO_vasprintf (&buf, fmt, ap) < 0)
buf = NULL;
__fxprintf (stream, ": %s", buf);