libbb.h: remove unused defines
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -12,10 +12,10 @@
|
||||
#if defined(__GLIBC__) && __GLIBC__ < 2
|
||||
int FAST_FUNC vdprintf(int d, const char *format, va_list ap)
|
||||
{
|
||||
char buf[BUF_SIZE];
|
||||
char buf[8 * 1024];
|
||||
int len;
|
||||
|
||||
len = vsnprintf(buf, BUF_SIZE, format, ap);
|
||||
len = vsnprintf(buf, sizeof(buf), format, ap);
|
||||
return write(d, buf, len);
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user