From 45c4f3665aaa63cab148cc9cc96fa07c666c1c38 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 1 Jan 2016 20:20:26 +0000 Subject: argp: Use fwrite_unlocked instead of __fxprintf when !_LIBC __fxprintf is not available when argp is built outside libc. gnulib has the same logic already. --- argp/argp-fmtstream.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'argp') diff --git a/argp/argp-fmtstream.c b/argp/argp-fmtstream.c index 982db4e7c8..d951a962e3 100644 --- a/argp/argp-fmtstream.c +++ b/argp/argp-fmtstream.c @@ -100,7 +100,11 @@ __argp_fmtstream_free (argp_fmtstream_t fs) __argp_fmtstream_update (fs); if (fs->p > fs->buf) { +#ifdef _LIBC __fxprintf (fs->stream, "%.*s", (int) (fs->p - fs->buf), fs->buf); +#else + fwrite_unlocked (fs->buf, 1, fs->p - fs->buf, fs->stream); +#endif } free (fs->buf); free (fs); -- cgit 1.4.1