Re: [PATCH] libbb: remove vdprintf

2017-07-29 Thread Denys Vlasenko
Applied, thanks! On Sat, Jul 29, 2017 at 3:48 PM, Ron Yorston wrote: > Two reasons: > > * it's only built for GNU C Library versions < 2 (released 1997) > > * it isn't used anywhere in BusyBox > > Signed-off-by: Ron Yorston > --- > TODO | 2 -- >

Re: [PATCH] libbb: remove vdprintf

2017-07-29 Thread Kang-Che Sung
On Sat, Jul 29, 2017 at 9:48 PM, Ron Yorston wrote: > -#if defined(__GLIBC__) && __GLIBC__ < 2 > -int vdprintf(int d, const char *format, va_list ap); > -#endif __GLIBC__ is NOT defined in glibc before version 2. So this macro check actually means a libc which claims to be

[PATCH] libbb: remove vdprintf

2017-07-29 Thread Ron Yorston
Two reasons: * it's only built for GNU C Library versions < 2 (released 1997) * it isn't used anywhere in BusyBox Signed-off-by: Ron Yorston --- TODO | 2 -- include/libbb.h | 3 --- libbb/Kbuild.src | 1 - libbb/vdprintf.c | 21 - 4 files