This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] argp: Use fwrite_unlocked instead of __fxprintf when !_LIBC


On 01/01/2016 09:20 PM, Khem Raj wrote:

> +#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

Why not use fwrite_unlocked unconditionally?

Thanks,
Florian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]